--- a/hgext/hgcia.py Thu Oct 08 23:24:38 2015 +0900
+++ b/hgext/hgcia.py Tue Oct 20 15:59:10 2015 -0500
@@ -43,7 +43,7 @@
from mercurial.i18n import _
from mercurial.node import bin, short
-from mercurial import cmdutil, patch, util, mail
+from mercurial import cmdutil, patch, util, mail, error
import email.Parser
import socket, xmlrpclib
@@ -233,7 +233,7 @@
srv = xmlrpclib.Server(self.ciaurl)
res = srv.hub.deliver(msg)
if res is not True and res != 'queued.':
- raise util.Abort(_('%s returned an error: %s') %
+ raise error.Abort(_('%s returned an error: %s') %
(self.ciaurl, res))
def sendemail(self, address, data):
@@ -259,7 +259,7 @@
ui.write(msg)
elif cia.ciaurl.startswith('mailto:'):
if not cia.emailfrom:
- raise util.Abort(_('email.from must be defined when '
+ raise error.Abort(_('email.from must be defined when '
'sending by email'))
cia.sendemail(cia.ciaurl[7:], msg)
else: