##// END OF EJS Templates
dispatch: use pycompat.maplist() instead of map() to get a list
Pulkit Goyal -
r31629:2632df09 default
parent child Browse files
Show More
@@ -402,7 +402,7 b' class cmdalias(object):'
402
402
403 @property
403 @property
404 def args(self):
404 def args(self):
405 args = map(util.expandpath, self.givenargs)
405 args = pycompat.maplist(util.expandpath, self.givenargs)
406 return aliasargs(self.fn, args)
406 return aliasargs(self.fn, args)
407
407
408 def __getattr__(self, name):
408 def __getattr__(self, name):
General Comments 0
You need to be logged in to leave comments. Login now