##// 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 301 def showmanifest(**args):
302 302 repo, ctx, templ = args['repo'], args['ctx'], args['templ']
303 303 args = args.copy()
304 args.update(dict(rev=repo.manifest.rev(ctx.changeset()[0]),
305 node=hex(ctx.changeset()[0])))
304 args.update({'rev': repo.manifest.rev(ctx.changeset()[0]),
305 'node': hex(ctx.changeset()[0])})
306 306 return templ('manifest', **args)
307 307
308 308 def shownode(repo, ctx, templ, **args):
General Comments 0
You need to be logged in to leave comments. Login now