Mercurial > public > mercurial-scm > hg
diff hgext/alias.py @ 7213:b4c035057d34
findcmd: have dispatch look up strict flag
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 22 Oct 2008 17:34:08 -0500 |
parents | f7d545a866e8 |
children | 9a1ea6587557 |
line wrap: on
line diff
--- a/hgext/alias.py Wed Oct 22 17:00:05 2008 -0500 +++ b/hgext/alias.py Wed Oct 22 17:34:08 2008 -0500 @@ -43,7 +43,7 @@ return try: - self._cmd = findcmd(self._ui, self._target, commands.table)[1] + self._cmd = findcmd(self._target, commands.table, False)[1] if self._cmd == self: raise RecursiveCommand() if self._target in commands.norepo.split(' '):