##// END OF EJS Templates
templatekw: move from dict() construction to {} literals...
Augie Fackler -
r20683:6cb419dd default
parent child Browse files
Show More
@@ -301,8 +301,8 b' def showlatesttagdistance(repo, ctx, tem'
301 def showmanifest(**args):
301 def showmanifest(**args):
302 repo, ctx, templ = args['repo'], args['ctx'], args['templ']
302 repo, ctx, templ = args['repo'], args['ctx'], args['templ']
303 args = args.copy()
303 args = args.copy()
304 args.update(dict(rev=repo.manifest.rev(ctx.changeset()[0]),
304 args.update({'rev': repo.manifest.rev(ctx.changeset()[0]),
305 node=hex(ctx.changeset()[0])))
305 'node': hex(ctx.changeset()[0])})
306 return templ('manifest', **args)
306 return templ('manifest', **args)
307
307
308 def shownode(repo, ctx, templ, **args):
308 def shownode(repo, ctx, templ, **args):
General Comments 0
You need to be logged in to leave comments. Login now