You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2016/11/04 14:34:35 UTC

incubator-ponymail git commit: archiver fails when adding entries to the notifications table

Repository: incubator-ponymail
Updated Branches:
  refs/heads/master c41d0f2a6 -> 373ef30ae


archiver fails when adding entries to the notifications table

This fixes #223

Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/373ef30a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/373ef30a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/373ef30a

Branch: refs/heads/master
Commit: 373ef30ae521c4fe3e68df88b9863559cf9362d2
Parents: c41d0f2
Author: Sebb <se...@apache.org>
Authored: Fri Nov 4 14:34:25 2016 +0000
Committer: Sebb <se...@apache.org>
Committed: Fri Nov 4 14:34:25 2016 +0000

----------------------------------------------------------------------
 tools/archiver.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/373ef30a/tools/archiver.py
----------------------------------------------------------------------
diff --git a/tools/archiver.py b/tools/archiver.py
index 1d25573..329fe33 100755
--- a/tools/archiver.py
+++ b/tools/archiver.py
@@ -434,7 +434,7 @@ class Archiver(object):
                                 'recipient': cid,
                                 'list': lid,
                                 'private': private,
-                                'date': msg_metadata['date'],
+                                'date': ojson['date'],
                                 'from': msg_metadata['from'],
                                 'to': msg_metadata['to'],
                                 'subject': msg_metadata['subject'],
@@ -468,7 +468,7 @@ class Archiver(object):
                                 'recipient': cid,
                                 'list': lid,
                                 'private': private,
-                                'date': msg_metadata['date'],
+                                'date': ojson['date'],
                                 'from': msg_metadata['from'],
                                 'to': msg_metadata['to'],
                                 'subject': msg_metadata['subject'],