aboutsummaryrefslogtreecommitdiffstats
path: root/src/featherweight.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-07-25 12:45:10 +0200
committerMattias Andrée <maandree@operamail.com>2013-07-25 12:45:10 +0200
commitd85f4288636dc335dea6f04ce124f1583eaf541e (patch)
tree535c57f3e1b30cecdafe4ac99080ea5a55c5dfba /src/featherweight.py
parentm (diff)
downloadpytagomacs-d85f4288636dc335dea6f04ce124f1583eaf541e.tar.gz
pytagomacs-d85f4288636dc335dea6f04ce124f1583eaf541e.tar.bz2
pytagomacs-d85f4288636dc335dea6f04ce124f1583eaf541e.tar.xz
derp
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/featherweight.py')
-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)