Mercurial > hg
changeset 2190:b67fcd91dd1b
fix minor bugs in localrepo.hook.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Wed, 03 May 2006 11:00:24 -0700 |
parents | e3eba577a0ae |
children | c2e43535d4d1 |
files | mercurial/localrepo.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/localrepo.py Wed May 03 10:25:28 2006 -0700 +++ b/mercurial/localrepo.py Wed May 03 11:00:24 2006 -0700 @@ -105,7 +105,7 @@ '("%s" is not callable)') % (hname, funcname)) try: - r = obj(ui=ui, repo=repo, hooktype=name, **args) + r = obj(ui=self.ui, repo=self, hooktype=name, **args) except (KeyboardInterrupt, util.SignalInterrupt): raise except Exception, exc: