hgext/convert/cvs.py
changeset 17974 337d728e644f
parent 17424 e7cfe3587ea4
child 22296 650b5b6e75ed
--- a/hgext/convert/cvs.py	Tue Nov 27 16:24:21 2012 -0800
+++ b/hgext/convert/cvs.py	Sun Nov 18 12:26:50 2012 -1000
@@ -11,6 +11,7 @@
 from mercurial.i18n import _
 
 from common import NoRepo, commit, converter_source, checktool
+from common import makedatetimestamp
 import cvsps
 
 class convert_cvs(converter_source):
@@ -70,6 +71,8 @@
                 cs.author = self.recode(cs.author)
                 self.lastbranch[cs.branch] = id
                 cs.comment = self.recode(cs.comment)
+                if self.ui.configbool('convert', 'localtimezone'):
+                    cs.date = makedatetimestamp(cs.date[0])
                 date = util.datestr(cs.date, '%Y-%m-%d %H:%M:%S %1%2')
                 self.tags.update(dict.fromkeys(cs.tags, id))