1 import ConfigParser
, os
3 BLACKLIST_169
= ('540', '649')
5 config
= ConfigParser
.ConfigParser()
6 p
= os
.path
.dirname(__file__
)
7 config
.read(os
.path
.join(p
, 'pyTivo.conf'))
9 def get169Setting(tsn
):
13 if config
.has_section('_tivo_' + tsn
):
14 if config
.has_option('_tivo_' + tsn
, 'aspect169'):
15 if config
.get('_tivo_' + tsn
, 'aspect169').lower() == 'true':
20 if tsn
[:3] in BLACKLIST_169
:
26 return filter( lambda x
: not(x
.startswith('_tivo_') or x
== 'Server'), config
.sections())
30 debug
= config
.get('Server', 'debug')
31 if debug
.lower() == 'true':