##// END OF EJS Templates
purge: use absolute_import
timeless -
r28382:27996f78 default
parent child Browse files
Show More
@@ -23,10 +23,18
23 23 # along with this program; if not, see <http://www.gnu.org/licenses/>.
24 24
25 25 '''command to delete untracked files from the working directory'''
26 from __future__ import absolute_import
26 27
27 from mercurial import util, commands, cmdutil, scmutil, error
28 import os
29
30 from mercurial import (
31 cmdutil,
32 commands,
33 error,
34 scmutil,
35 util,
36 )
28 37 from mercurial.i18n import _
29 import os
30 38
31 39 cmdtable = {}
32 40 command = cmdutil.command(cmdtable)
@@ -56,7 +56,6
56 56 hgext/mq.py not using absolute_import
57 57 hgext/notify.py not using absolute_import
58 58 hgext/patchbomb.py not using absolute_import
59 hgext/purge.py not using absolute_import
60 59 hgext/rebase.py not using absolute_import
61 60 hgext/share.py not using absolute_import
62 61 hgext/transplant.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now