##// END OF EJS Templates
acl: use absolute_import...
Gregory Szorc -
r28089:a1163ee2 default
parent child Browse files
Show More
@@ -191,9 +191,17 b' 3) Deny access to a file to anyone but u'
191
191
192 '''
192 '''
193
193
194 from __future__ import absolute_import
195
196 import getpass
197 import urllib
198
194 from mercurial.i18n import _
199 from mercurial.i18n import _
195 from mercurial import util, match, error
200 from mercurial import (
196 import getpass, urllib
201 error,
202 match,
203 util,
204 )
197
205
198 # Note for extension authors: ONLY specify testedwith = 'internal' for
206 # Note for extension authors: ONLY specify testedwith = 'internal' for
199 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
207 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
@@ -32,7 +32,6 b''
32 doc/gendoc.py not using absolute_import
32 doc/gendoc.py not using absolute_import
33 doc/hgmanpage.py not using absolute_import
33 doc/hgmanpage.py not using absolute_import
34 hgext/__init__.py not using absolute_import
34 hgext/__init__.py not using absolute_import
35 hgext/acl.py not using absolute_import
36 hgext/blackbox.py not using absolute_import
35 hgext/blackbox.py not using absolute_import
37 hgext/bugzilla.py not using absolute_import
36 hgext/bugzilla.py not using absolute_import
38 hgext/censor.py not using absolute_import
37 hgext/censor.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now