##// END OF EJS Templates
notify: use absolute_import
timeless -
r28416:d3c8183f default
parent child Browse files
Show More
@@ -132,11 +132,21 b' web.baseurl'
132 132 references. See also ``notify.strip``.
133 133
134 134 '''
135 from __future__ import absolute_import
135 136
136 import email, socket, time
137 import email
138 import fnmatch
139 import socket
140 import time
141
142 from mercurial import (
143 cmdutil,
144 error,
145 mail,
146 patch,
147 util,
148 )
137 149 from mercurial.i18n import _
138 from mercurial import patch, cmdutil, util, mail, error
139 import fnmatch
140 150
141 151 # Note for extension authors: ONLY specify testedwith = 'internal' for
142 152 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
@@ -44,7 +44,6 b''
44 44 hgext/largefiles/uisetup.py not using absolute_import
45 45 hgext/largefiles/wirestore.py not using absolute_import
46 46 hgext/mq.py not using absolute_import
47 hgext/notify.py not using absolute_import
48 47 hgext/rebase.py not using absolute_import
49 48 hgext/share.py not using absolute_import
50 49 hgext/transplant.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now