##// END OF EJS Templates
convert: common use absolute_import
timeless -
r28410:48b04018 default
parent child Browse files
Show More
@@ -4,10 +4,21 b''
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7 from __future__ import absolute_import
7
8
8 import base64, errno, subprocess, os, datetime, re
9 import base64
9 import cPickle as pickle
10 import cPickle as pickle
10 from mercurial import phases, util, error
11 import datetime
12 import errno
13 import os
14 import re
15 import subprocess
16
17 from mercurial import (
18 error,
19 phases,
20 util,
21 )
11 from mercurial.i18n import _
22 from mercurial.i18n import _
12
23
13 propertycache = util.propertycache
24 propertycache = util.propertycache
@@ -23,7 +23,6 b''
23 hgext/color.py not using absolute_import
23 hgext/color.py not using absolute_import
24 hgext/convert/__init__.py not using absolute_import
24 hgext/convert/__init__.py not using absolute_import
25 hgext/convert/bzr.py not using absolute_import
25 hgext/convert/bzr.py not using absolute_import
26 hgext/convert/common.py not using absolute_import
27 hgext/convert/cvs.py not using absolute_import
26 hgext/convert/cvs.py not using absolute_import
28 hgext/convert/transport.py not using absolute_import
27 hgext/convert/transport.py not using absolute_import
29 hgext/eol.py not using absolute_import
28 hgext/eol.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now