aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils.py2
1 files changed, 1 insertions, 1 deletions
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]:
bgstack15