##// END OF EJS Templates
py3: use '%d' instead of '%s' for ints...
Pulkit Goyal -
r36508:1c4247b0 default
parent child Browse files
Show More
@@ -146,7 +146,7 b' def catcommit(ui, repo, n, prefix, ctx=N'
146 146
147 147 date = ctx.date()
148 148 description = ctx.description().replace("\0", "")
149 ui.write(("author %s %s %s\n" % (ctx.user(), int(date[0]), date[1])))
149 ui.write(("author %s %d %d\n" % (ctx.user(), int(date[0]), date[1])))
150 150
151 151 if 'committer' in ctx.extra():
152 152 ui.write(("committer %s\n" % ctx.extra()['committer']))
General Comments 0
You need to be logged in to leave comments. Login now