From ada6393ca27e2e1e822b65c92aaf31224da72811 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Mon, 5 Jul 2010 13:56:05 +0200 Subject: Stupid bug fix. --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils.py') diff --git a/utils.py b/utils.py index ba0614c5..26e270a6 100755 --- a/utils.py +++ b/utils.py @@ -284,7 +284,7 @@ def load_feed(): if list_of_feeds != []: sha1_hash = hashlib.sha1() # Case-insensitive sorting - tupleList = [(x[3].upper(), x) for x in list_of_feeds] + tupleList = [(x[0].lower(), x) for x in list_of_feeds] tupleList.sort(key=operator.itemgetter(0)) for feed in [x[1] for x in tupleList]: -- cgit