##// END OF EJS Templates
templatekw: have {manifest} use ctx.manifestnode() for consistency...
Yuya Nishihara -
r24676:13c42a88 default
parent child Browse files
Show More
@@ -333,9 +333,9 b' def showlatesttagdistance(repo, ctx, tem'
333
333
334 def showmanifest(**args):
334 def showmanifest(**args):
335 repo, ctx, templ = args['repo'], args['ctx'], args['templ']
335 repo, ctx, templ = args['repo'], args['ctx'], args['templ']
336 mnode = ctx.manifestnode()
336 args = args.copy()
337 args = args.copy()
337 args.update({'rev': repo.manifest.rev(ctx.changeset()[0]),
338 args.update({'rev': repo.manifest.rev(mnode), 'node': hex(mnode)})
338 'node': hex(ctx.changeset()[0])})
339 return templ('manifest', **args)
339 return templ('manifest', **args)
340
340
341 def shownode(repo, ctx, templ, **args):
341 def shownode(repo, ctx, templ, **args):
General Comments 0
You need to be logged in to leave comments. Login now