##// END OF EJS Templates
convert-repo: fix reversed time zone offset
Vadim Gelfer -
r2093:5cc41472 default
parent child Browse files
Show More
@@ -73,7 +73,7 b' class convert_git:'
73 if n == "parent": parents.append(v)
73 if n == "parent": parents.append(v)
74
74
75 tzs, tzh, tzm = tz[-5:-4] + "1", tz[-4:-2], tz[-2:]
75 tzs, tzh, tzm = tz[-5:-4] + "1", tz[-4:-2], tz[-2:]
76 tz = int(tzs) * (int(tzh) * 3600 + int(tzm))
76 tz = -int(tzs) * (int(tzh) * 3600 + int(tzm))
77 date = tm + " " + str(tz)
77 date = tm + " " + str(tz)
78 return (parents, author, date, message)
78 return (parents, author, date, message)
79
79
General Comments 0
You need to be logged in to leave comments. Login now