diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-16 20:39:03 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-16 20:39:03 +0000 |
| commit | d30355fd9062e6333af64e64a9a4847ac76ed73e (patch) | |
| tree | 8f99d30c37219698e230b9a96fee2afde219f423 /lib/python | |
| parent | c5d17c0b31985db72c1aae75228432880f51b336 (diff) | |
| download | enigma2-d30355fd9062e6333af64e64a9a4847ac76ed73e.tar.gz enigma2-d30355fd9062e6333af64e64a9a4847ac76ed73e.zip | |
fix gettext
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/ParentalControlSetup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/ParentalControlSetup.py b/lib/python/Screens/ParentalControlSetup.py index db1a0be3..7c4c3ecf 100644 --- a/lib/python/Screens/ParentalControlSetup.py +++ b/lib/python/Screens/ParentalControlSetup.py @@ -172,7 +172,7 @@ class ParentalControlEditor(Screen): if list is not None: services = list.getContent("CN", True) #(servicecomparestring, name) for s in services: - if s[1][0]=='\xc2' and s[1][1]=='\x86': # ignore shortname brackets + if ord(s[1][0])==0xc2 and ord(s[1][1])==0x86: # ignore shortname brackets key = s[1].lower()[2] else: key = s[1].lower()[0] |
