Show More
@@ -225,7 +225,9 def aliasargs(fn, givenargs): | |||
|
225 | 225 | def replacer(m): |
|
226 | 226 | num = int(m.group(1)) - 1 |
|
227 | 227 | nums.append(num) |
|
228 | if num < len(givenargs): | |
|
228 | 229 | return givenargs[num] |
|
230 | return '' | |
|
229 | 231 | cmd = re.sub(r'\$(\d+|\$)', replacer, cmd) |
|
230 | 232 | givenargs = [x for i, x in enumerate(givenargs) |
|
231 | 233 | if i not in nums] |
General Comments 0
You need to be logged in to leave comments.
Login now