##// END OF EJS Templates
blackbox: use absolute_import
Gregory Szorc -
r28090:8113c88b default
parent child Browse files
Show More
@@ -29,9 +29,16 b' Examples::'
29
29
30 """
30 """
31
31
32 from mercurial import util, cmdutil
32 from __future__ import absolute_import
33
34 import errno
35 import re
36
33 from mercurial.i18n import _
37 from mercurial.i18n import _
34 import errno, re
38 from mercurial import (
39 cmdutil,
40 util,
41 )
35
42
36 cmdtable = {}
43 cmdtable = {}
37 command = cmdutil.command(cmdtable)
44 command = cmdutil.command(cmdtable)
@@ -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/blackbox.py not using absolute_import
36 hgext/bugzilla.py not using absolute_import
35 hgext/bugzilla.py not using absolute_import
37 hgext/censor.py not using absolute_import
36 hgext/censor.py not using absolute_import
38 hgext/children.py not using absolute_import
37 hgext/children.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now