aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsrc/featherweight.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/featherweight.py b/src/featherweight.py
index 08474a0..f84a7fb 100755
--- a/src/featherweight.py
+++ b/src/featherweight.py
@@ -46,7 +46,7 @@ def rss_date(value):
value = value[:-1]
while ' ' in value:
value = value.replace(' ', ' ')
- value = value.replace(':').split(' ')
+ value = value.replace(':', ' ').split(' ')
(_, day, month, year, hour, minute, second, offset) = value
offsign, offhour, offmin = offset[0] == '+', offset[1 : 3], offset[3 : 5]
year, day = int(year), month.lower(), int(day)