##// END OF EJS Templates
py3: explicitly convert result of dict.items() into list...
Pulkit Goyal -
r36296:3e1139b7 default
parent child Browse files
Show More
@@ -3196,7 +3196,7 b' def select(ui, repo, *args, **opts):'
3196 guards[g] += 1
3196 guards[g] += 1
3197 if ui.verbose:
3197 if ui.verbose:
3198 guards['NONE'] = noguards
3198 guards['NONE'] = noguards
3199 guards = guards.items()
3199 guards = list(guards.items())
3200 guards.sort(key=lambda x: x[0][1:])
3200 guards.sort(key=lambda x: x[0][1:])
3201 if guards:
3201 if guards:
3202 ui.note(_('guards in series file:\n'))
3202 ui.note(_('guards in series file:\n'))
General Comments 0
You need to be logged in to leave comments. Login now