##// END OF EJS Templates
git: convert tz offset to int (issue6359)...
Augie Fackler -
r45973:8ddbb75b default
parent child Browse files
Show More
@@ -386,7 +386,7 b' class changelog(baselog):'
386 encoding.unifromlocal(stringutil.person(user)),
386 encoding.unifromlocal(stringutil.person(user)),
387 encoding.unifromlocal(stringutil.email(user)),
387 encoding.unifromlocal(stringutil.email(user)),
388 timestamp,
388 timestamp,
389 -(tz // 60),
389 -int(tz // 60),
390 )
390 )
391 oid = self.gitrepo.create_commit(
391 oid = self.gitrepo.create_commit(
392 None, sig, sig, desc, gitutil.togitnode(manifest), parents
392 None, sig, sig, desc, gitutil.togitnode(manifest), parents
General Comments 0
You need to be logged in to leave comments. Login now