##// END OF EJS Templates
censor: use absolute_import
Gregory Szorc -
r28092:5166b7a8 default
parent child Browse files
Show More
@@ -25,10 +25,20 b' function in a meaningful way. Such comma'
25 revisions if they are allowed by the "censor.policy=ignore" config option.
25 revisions if they are allowed by the "censor.policy=ignore" config option.
26 """
26 """
27
27
28 from __future__ import absolute_import
29
30 from mercurial.i18n import _
28 from mercurial.node import short
31 from mercurial.node import short
29 from mercurial import cmdutil, error, filelog, revlog, scmutil, util
32
30 from mercurial.i18n import _
33 from mercurial import (
31 from mercurial import lock as lockmod
34 cmdutil,
35 error,
36 filelog,
37 lock as lockmod,
38 revlog,
39 scmutil,
40 util,
41 )
32
42
33 cmdtable = {}
43 cmdtable = {}
34 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/censor.py not using absolute_import
36 hgext/children.py not using absolute_import
35 hgext/children.py not using absolute_import
37 hgext/churn.py not using absolute_import
36 hgext/churn.py not using absolute_import
38 hgext/clonebundles.py not using absolute_import
37 hgext/clonebundles.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now