diff options
author | Magnus Hagander | 2015-01-19 20:49:48 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-01-19 20:49:48 +0000 |
commit | a43e449e04c82b3424fb3a5dd3561bd9f0d2d60e (patch) | |
tree | b9a579e8b6d0361b354d8c1aba143e6e00b2274b | |
parent | 85c76f30f9f04803f57d15aead8822ae701f3a77 (diff) |
Remove useless debugging output
-rwxr-xr-x | tools/commitfest/update_archive_threads.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/commitfest/update_archive_threads.py b/tools/commitfest/update_archive_threads.py index a8d5876..ace46f4 100755 --- a/tools/commitfest/update_archive_threads.py +++ b/tools/commitfest/update_archive_threads.py @@ -22,7 +22,6 @@ from commitfest.ajax import _archivesAPI, parse_and_add_attachments if __name__ == "__main__": for thread in MailThread.objects.filter(patches__commitfests__status__in=(1,2,3)).distinct(): - print "Attempt to update thread %s" % thread.messageid r = sorted(_archivesAPI('/message-id.json/%s' % thread.messageid), key=lambda x: x['date']) if thread.latestmsgid != r[-1]['msgid']: # There is now a newer mail in the thread! |