##// END OF EJS Templates
git: also convert timezone to int (issue6359)...
Augie Fackler -
r46094:e7587430 default
parent child Browse files
Show More
@@ -389,7 +389,7 b' class changelog(baselog):'
389 sig = pygit2.Signature(
389 sig = pygit2.Signature(
390 encoding.unifromlocal(stringutil.person(user)),
390 encoding.unifromlocal(stringutil.person(user)),
391 encoding.unifromlocal(stringutil.email(user)),
391 encoding.unifromlocal(stringutil.email(user)),
392 timestamp,
392 int(timestamp),
393 -int(tz // 60),
393 -int(tz // 60),
394 )
394 )
395 oid = self.gitrepo.create_commit(
395 oid = self.gitrepo.create_commit(
General Comments 0
You need to be logged in to leave comments. Login now