Submitter | phabricator |
---|---|
Date | March 1, 2018, 7:15 p.m. |
Message ID | <3b3d43a0e673796f373e02b77c0beb31@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28578/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/hgk.py b/hgext/hgk.py --- a/hgext/hgk.py +++ b/hgext/hgk.py @@ -146,7 +146,7 @@ date = ctx.date() description = ctx.description().replace("\0", "") - ui.write(("author %s %s %s\n" % (ctx.user(), int(date[0]), date[1]))) + ui.write(("author %s %d %d\n" % (ctx.user(), int(date[0]), date[1]))) if 'committer' in ctx.extra(): ui.write(("committer %s\n" % ctx.extra()['committer']))