##// 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 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 17 from mercurial.i18n import _
12 from mercurial import patch, cmdutil, scmutil, util, commands, error
13 from mercurial import encoding
14 import os
15 import time, datetime
18 from mercurial import (
19 cmdutil,
20 commands,
21 encoding,
22 error,
23 patch,
24 scmutil,
25 util,
26 )
16 27
17 28 cmdtable = {}
18 29 command = cmdutil.command(cmdtable)
@@ -32,7 +32,6 b''
32 32 doc/gendoc.py not using absolute_import
33 33 doc/hgmanpage.py not using absolute_import
34 34 hgext/__init__.py not using absolute_import
35 hgext/churn.py not using absolute_import
36 35 hgext/clonebundles.py not using absolute_import
37 36 hgext/color.py not using absolute_import
38 37 hgext/convert/__init__.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now