##// END OF EJS Templates
cmdutil: remove unnecessary parenthesis
Martin Geisler -
r11821:15aa42aa default
parent child Browse files
Show More
@@ -638,7 +638,7 b" def export(repo, revs, template='hg-%h.p"
638 fp.write("# HG changeset patch\n")
638 fp.write("# HG changeset patch\n")
639 fp.write("# User %s\n" % ctx.user())
639 fp.write("# User %s\n" % ctx.user())
640 fp.write("# Date %d %d\n" % ctx.date())
640 fp.write("# Date %d %d\n" % ctx.date())
641 if branch and (branch != 'default'):
641 if branch and branch != 'default':
642 fp.write("# Branch %s\n" % branch)
642 fp.write("# Branch %s\n" % branch)
643 fp.write("# Node ID %s\n" % hex(node))
643 fp.write("# Node ID %s\n" % hex(node))
644 fp.write("# Parent %s\n" % hex(prev))
644 fp.write("# Parent %s\n" % hex(prev))
General Comments 0
You need to be logged in to leave comments. Login now