##// 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 # 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
7
8 from i18n import _
8 from __future__ import absolute_import
9 import scmutil, util, parsers, error
9
10 import os, stat, errno
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 _sha = util.sha1
22 _sha = util.sha1
13
23
@@ -124,7 +124,6 b''
124 mercurial/scmposix.py not using absolute_import
124 mercurial/scmposix.py not using absolute_import
125 mercurial/scmutil.py not using absolute_import
125 mercurial/scmutil.py not using absolute_import
126 mercurial/scmwindows.py not using absolute_import
126 mercurial/scmwindows.py not using absolute_import
127 mercurial/store.py not using absolute_import
128 setup.py not using absolute_import
127 setup.py not using absolute_import
129 tests/filterpyflakes.py requires print_function
128 tests/filterpyflakes.py requires print_function
130 tests/generate-working-copy-states.py requires print_function
129 tests/generate-working-copy-states.py requires print_function
General Comments 0
You need to be logged in to leave comments. Login now