Submitter | Augie Fackler |
---|---|
Date | March 12, 2014, 5:40 p.m. |
Message ID | <6cb419dd3703ed59fc03.1394646047@augie-macbookair> |
Download | mbox | patch |
Permalink | /patch/3929/ |
State | Accepted |
Commit | 6cb419dd3703ed59fc03c3996916e87a880a4f02 |
Headers | show |
Comments
Patch
diff --git a/mercurial/templatekw.py b/mercurial/templatekw.py --- a/mercurial/templatekw.py +++ b/mercurial/templatekw.py @@ -301,8 +301,8 @@ def showmanifest(**args): repo, ctx, templ = args['repo'], args['ctx'], args['templ'] args = args.copy() - args.update(dict(rev=repo.manifest.rev(ctx.changeset()[0]), - node=hex(ctx.changeset()[0]))) + args.update({'rev': repo.manifest.rev(ctx.changeset()[0]), + 'node': hex(ctx.changeset()[0])}) return templ('manifest', **args) def shownode(repo, ctx, templ, **args):