Simple RSS Reader inspired by Gxxgle Reader
Revision | 451896ffd5a3118aa5c8b016e2aa3947885c425c (tree) |
---|---|
Zeit | 2013-07-16 19:37:08 |
Autor | hylom <hylom@hylo...> |
Commiter | hylom |
backend: fix typo in fetcher/feed.py
@@ -41,7 +41,7 @@ class FeedFetcher(object): | ||
41 | 41 | if entry.timestamp.tzinfo == None: |
42 | 42 | entry.timestamp = entry.timestamp.replace(tzinfo=dateutil.tz.tzutc()) |
43 | 43 | |
44 | - else if entry.timestamp.tzinfo != dateutil.tz.tzutc(): | |
44 | + elif entry.timestamp.tzinfo != dateutil.tz.tzutc(): | |
45 | 45 | entry.timestamp = entry.timestamp.astimezone(dateutil.tz.tzutc()) |
46 | 46 | |
47 | 47 | entries.append(entry) |