Show
Ignore:
Timestamp:
04/06/08 22:46:43 (9 months ago)
Author:
Jason Michalski <armooo@armooo.net>
git-committer:
Jason Michalski <armooo@armooo.net> 1207540003 -0500
git-parent:

[7b28990b5af30df5f624c94e39699cec8839543a]

git-author:
Jason Michalski <armooo@armooo.net> 1207540003 -0500
Message:

Everything is loging with the logging module

Currently everything is always in debug mode

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • config.py

    rdd5494d rae39ac9  
    6262def getShares(tsn=''): 
    6363    shares = [(section, dict(config.items(section))) 
    64               for section in config.sections() 
    65               if not(section.startswith('_tivo_') or section == 'Server')] 
     64                for section in config.sections() 
     65                if not ( 
     66                    section.startswith('_tivo_') 
     67                    or section in ('Server', 'loggers', 'handlers', 'formatters') 
     68                    or section.startswith('logger_') 
     69                    or section.startswith('handler_') 
     70                    or section.startswith('formatter_') 
     71                ) 
     72    ] 
    6673 
    6774    if config.has_section('_tivo_' + tsn): 
     
    315322    except NoOptionError: 
    316323        return None 
    317      
     324 
    318325def getVideoCodec(tsn = None): 
    319326    if tsn and config.has_section('_tivo_' + tsn):