Skip to content

Commit

Permalink
Fix pep8 compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
machawk1 committed Jun 21, 2018
1 parent 13fba81 commit 40bcb3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ipwb/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ def datetimeToRFC1123(digits14):

def rfc1123ToDigits14(rfc1123DateString):
setLocale()
d = datetime.datetime.strptime(rfc1123DateString, '%a, %d %b %Y %H:%M:%S %Z')
d = datetime.datetime.strptime(rfc1123DateString,
'%a, %d %b %Y %H:%M:%S %Z')

# TODO: Account for conversion if TZ other than GMT not specified

Expand Down

0 comments on commit 40bcb3d

Please sign in to comment.