##// END OF EJS Templates
churn: use absolute_import
Gregory Szorc -
r28094:79fc6275 default
parent child Browse files
Show More
@@ -8,11 +8,22 b''
8
8
9 '''command to display statistics about repository history'''
9 '''command to display statistics about repository history'''
10
10
11 from __future__ import absolute_import
12
13 import datetime
14 import os
15 import time
16
11 from mercurial.i18n import _
17 from mercurial.i18n import _
12 from mercurial import patch, cmdutil, scmutil, util, commands, error
18 from mercurial import (
13 from mercurial import encoding
19 cmdutil,
14 import os
20 commands,
15 import time, datetime
21 encoding,
22 error,
23 patch,
24 scmutil,
25 util,
26 )
16
27
17 cmdtable = {}
28 cmdtable = {}
18 command = cmdutil.command(cmdtable)
29 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/churn.py not using absolute_import
36 hgext/clonebundles.py not using absolute_import
35 hgext/clonebundles.py not using absolute_import
37 hgext/color.py not using absolute_import
36 hgext/color.py not using absolute_import
38 hgext/convert/__init__.py not using absolute_import
37 hgext/convert/__init__.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now