Mercurial > hg-stable
diff hgext/hgk.py @ 17959:542d133ea0a3
hgk: no committer please
Generate committer only if we really have it.
Update test-hgk.t accordingly.
author | Andrew Shadura <bugzilla@tut.by> |
---|---|
date | Tue, 16 Oct 2012 22:19:08 +0200 |
parents | a08775ec89f2 |
children | cf72fd8b3072 |
line wrap: on
line diff
--- a/hgext/hgk.py Tue Oct 16 14:54:51 2012 +0200 +++ b/hgext/hgk.py Tue Oct 16 22:19:08 2012 +0200 @@ -108,10 +108,11 @@ if lines and lines[-1].startswith('committer:'): committer = lines[-1].split(': ')[1].rstrip() else: - committer = ctx.user() + committer = "" ui.write(("author %s %s %s\n" % (ctx.user(), int(date[0]), date[1]))) - ui.write(("committer %s %s %s\n" % (committer, int(date[0]), date[1]))) + if committer != '': + ui.write(("committer %s %s %s\n" % (committer, int(date[0]), date[1]))) ui.write(("revision %d\n" % ctx.rev())) ui.write(("branch %s\n\n" % ctx.branch()))