From 9131c8c5c9f2b137a0fc766e7497e0e5ccbddd38 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Mon, 5 Feb 2007 21:40:12 +0000 Subject: [PATCH] convert parental black/whitelist to uppercase on file read --- lib/python/Components/ParentalControl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/python/Components/ParentalControl.py b/lib/python/Components/ParentalControl.py index 057537e1..c3238804 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 -- 2.30.2