##// END OF EJS Templates
Fixed error stemming from mixed args and 'commented out' args
Thomas Adriaan Hellinger -
Show More
@@ -169,13 +169,12 b' class Alias(object):'
169 if cmd.find('%l') >= 0:
169 if cmd.find('%l') >= 0:
170 cmd = cmd.replace('%l', rest)
170 cmd = cmd.replace('%l', rest)
171 rest = ''
171 rest = ''
172
172
173 if cmd.find('%%s') >= 1:
174 cmd = cmd.replace('%%s', '%s')
175
176 if nargs==0:
173 if nargs==0:
177 # Simple, argument-less aliases
174 if cmd.find('%%s') >= 1:
178 cmd = '%s %s' % (cmd, rest)
175 cmd = cmd.replace('%%s', '%s')
176 # Simple, argument-less aliases
177 cmd = '%s %s' % (cmd, rest)
179 else:
178 else:
180 # Handle aliases with positional arguments
179 # Handle aliases with positional arguments
181 args = rest.split(None, nargs)
180 args = rest.split(None, nargs)
General Comments 0
You need to be logged in to leave comments. Login now