##// END OF EJS Templates
store: use absolute_import
Gregory Szorc -
r27480:50915967 default
parent child Browse files
Show More
@@ -5,9 +5,19 b''
5 5 # This software may be used and distributed according to the terms of the
6 6 # GNU General Public License version 2 or any later version.
7 7
8 from i18n import _
9 import scmutil, util, parsers, error
10 import os, stat, errno
8 from __future__ import absolute_import
9
10 import errno
11 import os
12 import stat
13
14 from .i18n import _
15 from . import (
16 error,
17 parsers,
18 scmutil,
19 util,
20 )
11 21
12 22 _sha = util.sha1
13 23
@@ -124,7 +124,6 b''
124 124 mercurial/scmposix.py not using absolute_import
125 125 mercurial/scmutil.py not using absolute_import
126 126 mercurial/scmwindows.py not using absolute_import
127 mercurial/store.py not using absolute_import
128 127 setup.py not using absolute_import
129 128 tests/filterpyflakes.py requires print_function
130 129 tests/generate-working-copy-states.py requires print_function
General Comments 0
You need to be logged in to leave comments. Login now