aboutsummaryrefslogtreecommitdiffstats
path: root/src/featherweight.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-07-25 12:45:31 +0200
committerMattias Andrée <maandree@operamail.com>2013-07-25 12:45:31 +0200
commite3444eb9887dcd7ed5ead34c9e90caf24bb4b528 (patch)
treefc04c8cb8a9cef5c3d36b34e46afeb7f234b71ba /src/featherweight.py
parentderp (diff)
downloadpytagomacs-e3444eb9887dcd7ed5ead34c9e90caf24bb4b528.tar.gz
pytagomacs-e3444eb9887dcd7ed5ead34c9e90caf24bb4b528.tar.bz2
pytagomacs-e3444eb9887dcd7ed5ead34c9e90caf24bb4b528.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 f84a7fb..142c917 100755
--- a/src/featherweight.py
+++ b/src/featherweight.py
@@ -49,7 +49,7 @@ def rss_date(value):
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)
+ year, month, day = int(year), month.lower(), int(day)
hour, minute, second = int(hour), int(minute), int(second)
offhour, offmin = int(offhour), int(offmin)
months = ['', 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec']