diff -r d51c658d3f04 -r 56b2bcea2529 hgext/extdiff.py --- a/hgext/extdiff.py Mon Oct 05 22:49:24 2015 -0700 +++ b/hgext/extdiff.py Thu Oct 08 12:55:45 2015 -0700 @@ -63,7 +63,7 @@ from mercurial.i18n import _ from mercurial.node import short, nullid from mercurial import cmdutil, scmutil, util, commands, encoding, filemerge -from mercurial import archival +from mercurial import archival, error import os, shlex, shutil, tempfile, re cmdtable = {} @@ -127,7 +127,7 @@ if revs and change: msg = _('cannot specify --rev and --change at the same time') - raise util.Abort(msg) + raise error.Abort(msg) elif change: node2 = scmutil.revsingle(repo, change, None).node() node1a, node1b = repo.changelog.parents(node2) @@ -149,9 +149,9 @@ if opts.get('patch'): if subrepos: - raise util.Abort(_('--patch cannot be used with --subrepos')) + raise error.Abort(_('--patch cannot be used with --subrepos')) if node2 is None: - raise util.Abort(_('--patch requires two revisions')) + raise error.Abort(_('--patch requires two revisions')) else: mod_a, add_a, rem_a = map(set, repo.status(node1a, node2, matcher, listsubrepos=subrepos)[:3])