##// END OF EJS Templates
phabricator: set local:commits time metadata as an int, not a string...
Ian Moody -
r42370:c0e30c9e default
parent child Browse files
Show More
@@ -397,7 +397,7 b' def writediffproperties(ctx, diff):'
397 ctx.hex(): {
397 ctx.hex(): {
398 b'author': stringutil.person(ctx.user()),
398 b'author': stringutil.person(ctx.user()),
399 b'authorEmail': stringutil.email(ctx.user()),
399 b'authorEmail': stringutil.email(ctx.user()),
400 b'time': b'%d' % ctx.date()[0],
400 b'time': int(ctx.date()[0]),
401 },
401 },
402 }),
402 }),
403 }
403 }
General Comments 0
You need to be logged in to leave comments. Login now