equal
deleted
inserted
replaced
192 |
192 |
193 return |
193 return |
194 |
194 |
195 args = shlex.split(self.definition) |
195 args = shlex.split(self.definition) |
196 cmd = args.pop(0) |
196 cmd = args.pop(0) |
197 opts = [] |
|
198 help = '' |
|
199 |
197 |
200 try: |
198 try: |
201 self.fn, self.opts, self.help = cmdutil.findcmd(cmd, cmdtable, False)[1] |
199 self.fn, self.opts, self.help = cmdutil.findcmd(cmd, cmdtable, False)[1] |
202 self.args = aliasargs(self.fn) + args |
200 self.args = aliasargs(self.fn) + args |
203 if cmd not in commands.norepo.split(' '): |
201 if cmd not in commands.norepo.split(' '): |