contrib/convert-repo
changeset 2093 5cc414722587
parent 1715 40346aa66b0f
child 2649 e6a7a6a33a62
--- a/contrib/convert-repo
+++ b/contrib/convert-repo
@@ -73,7 +73,7 @@ class convert_git:
             if n == "parent": parents.append(v)
 
         tzs, tzh, tzm = tz[-5:-4] + "1", tz[-4:-2], tz[-2:]
-        tz = int(tzs) * (int(tzh) * 3600 + int(tzm))
+        tz = -int(tzs) * (int(tzh) * 3600 + int(tzm))
         date = tm + " " + str(tz)
         return (parents, author, date, message)