##// END OF EJS Templates
py3: use pycompat.ziplist instead of zip...
Pulkit Goyal -
r35960:f81df691 default
parent child Browse files
Show More
@@ -477,7 +477,8 b' class cmdalias(object):'
477 if earlyopts:
477 if earlyopts:
478 self.badalias = (_("error in definition for alias '%s': %s may "
478 self.badalias = (_("error in definition for alias '%s': %s may "
479 "only be given on the command line")
479 "only be given on the command line")
480 % (self.name, '/'.join(zip(*earlyopts)[0])))
480 % (self.name, '/'.join(pycompat.ziplist(*earlyopts)
481 [0])))
481 return
482 return
482 self.cmdname = cmd = args.pop(0)
483 self.cmdname = cmd = args.pop(0)
483 self.givenargs = args
484 self.givenargs = args
General Comments 0
You need to be logged in to leave comments. Login now