##// END OF EJS Templates
py3: explicitly convert dict.values() to a list on py3...
Pulkit Goyal -
r32862:e4a43b81 default
parent child Browse files
Show More
@@ -452,7 +452,7 b' def findcmd(cmd, table, strict=True):'
452 raise error.AmbiguousCommand(cmd, clist)
452 raise error.AmbiguousCommand(cmd, clist)
453
453
454 if choice:
454 if choice:
455 return choice.values()[0]
455 return list(choice.values())[0]
456
456
457 raise error.UnknownCommand(cmd, allcmds)
457 raise error.UnknownCommand(cmd, allcmds)
458
458
General Comments 0
You need to be logged in to leave comments. Login now