X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=apps%2Fpatchwork%2Fbin%2Fparsemail.py;h=1f213933a1e094c782de5f1564357df685fd847f;hb=9b7216bc0bd74b30796cdb64ce8b39a6110c9157;hp=3fbe4735101c31e31a4d5b6c9384e910b062f339;hpb=ae13beca83bcd061d7b0158ed4bdd45abf2eb855;p=patchwork diff --git a/apps/patchwork/bin/parsemail.py b/apps/patchwork/bin/parsemail.py index 3fbe473..1f21393 100755 --- a/apps/patchwork/bin/parsemail.py +++ b/apps/patchwork/bin/parsemail.py @@ -103,7 +103,6 @@ def find_author(mail): def mail_date(mail): t = parsedate_tz(mail.get('Date', '')) if not t: - print "using now()" return datetime.datetime.utcnow() return datetime.datetime.utcfromtimestamp(mktime_tz(t))