summaryrefslogtreecommitdiff
path: root/tortoisehg/hgqt/bisect.py
diff options
context:
space:
mode:
authorJames Cowgill <jcowgill@debian.org>2018-08-30 10:12:47 +0100
committerJames Cowgill <jcowgill@debian.org>2018-08-30 10:12:47 +0100
commit82d8a5ac948a5d558bf51e418fd845c30ac80995 (patch)
tree26dc7483de4bc8f478caddc490cb8107e769ec6a /tortoisehg/hgqt/bisect.py
parente4cd9ae933c09fab5db1956d23ec273466133315 (diff)
New upstream version 4.7
Diffstat (limited to 'tortoisehg/hgqt/bisect.py')
-rw-r--r--tortoisehg/hgqt/bisect.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tortoisehg/hgqt/bisect.py b/tortoisehg/hgqt/bisect.py
index aaa9f1f..ae4f67e 100644
--- a/tortoisehg/hgqt/bisect.py
+++ b/tortoisehg/hgqt/bisect.py
@@ -26,7 +26,6 @@ from .qtgui import (
from mercurial import (
error,
- util,
)
from ..util import hglib
@@ -162,7 +161,7 @@ class BisectDialog(QDialog):
return ctx.rev()
except (error.LookupError, error.RepoLookupError), e:
self._stbar.showMessage(hglib.tounicode(str(e)))
- except util.Abort, e:
+ except error.Abort, e:
if e.hint:
err = _('%s (hint: %s)') % (hglib.tounicode(str(e)),
hglib.tounicode(e.hint))