##// END OF EJS Templates
webutil: move from dict() construction to {} literals...
Augie Fackler -
r20681:52e5aca1 default
parent child Browse files
Show More
@@ -146,7 +146,7 b' def children(ctx, hide=None):'
146 def renamelink(fctx):
146 def renamelink(fctx):
147 r = fctx.renamed()
147 r = fctx.renamed()
148 if r:
148 if r:
149 return [dict(file=r[0], node=hex(r[1]))]
149 return [{'file': r[0], 'node': hex(r[1])}]
150 return []
150 return []
151
151
152 def nodetagsdict(repo, node):
152 def nodetagsdict(repo, node):
General Comments 0
You need to be logged in to leave comments. Login now