# HG changeset patch # User Patrick Mezard # Date 1240946195 -7200 # Node ID 15326640167664b630a676ede8ba6f6345840ea0 # Parent 75d4fde9aa2e98f0abc3605d6564cc1d1bdad918 hg_delta_editor: add timezone to default date to avoid DST issues diff --git a/hg_delta_editor.py b/hg_delta_editor.py --- a/hg_delta_editor.py +++ b/hg_delta_editor.py @@ -130,7 +130,7 @@ class HgChangeReceiver(delta.Editor): if self.authors: self.writeauthors() - self.lastdate = '1970-01-01 00:00:00' + self.lastdate = '1970-01-01 00:00:00 -0000' self.includepaths = {} self.excludepaths = {} if filemap and os.path.exists(filemap):