From: Andreas Monzner Date: Mon, 5 Feb 2007 21:40:12 +0000 (+0000) Subject: convert parental black/whitelist to uppercase on file read X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=9131c8c5c9f2b137a0fc766e7497e0e5ccbddd38 convert parental black/whitelist to uppercase on file read --- diff --git a/lib/python/Components/ParentalControl.py b/lib/python/Components/ParentalControl.py index 057537e..c323880 100644 --- a/lib/python/Components/ParentalControl.py +++ b/lib/python/Components/ParentalControl.py @@ -153,7 +153,7 @@ class ParentalControl: file = open(resolveFilename(SCOPE_CONFIG, "whitelist"), 'r') lines = file.readlines() for x in lines: - self.whitelist.append(x.strip()) + self.whitelist.append(x.strip().upper()) file.close except: pass @@ -170,7 +170,7 @@ class ParentalControl: file = open(resolveFilename(SCOPE_CONFIG, "blacklist"), 'r') lines = file.readlines() for x in lines: - self.blacklist.append(x.strip()) + self.blacklist.append(x.strip().upper()) file.close except: pass