##// END OF EJS Templates
cmdutil: avoid recycling variable name "name" in namespaces code...
Nathaniel Manista -
r28904:80be5dbe default
parent child Browse files
Show More
@@ -1275,10 +1275,10 b' class changeset_printer(object):'
1275 1275 self.ui.write(_("branch: %s\n") % branch,
1276 1276 label='log.branch')
1277 1277
1278 for name, ns in self.repo.names.iteritems():
1278 for nsname, ns in self.repo.names.iteritems():
1279 1279 # branches has special logic already handled above, so here we just
1280 1280 # skip it
1281 if name == 'branches':
1281 if nsname == 'branches':
1282 1282 continue
1283 1283 # we will use the templatename as the color name since those two
1284 1284 # should be the same
General Comments 0
You need to be logged in to leave comments. Login now