Show More
@@ -5,11 +5,24 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 node import nullid | |
|
9 | from i18n import _ | |
|
10 | import scmutil, util, osutil, parsers, encoding, pathutil, error | |
|
11 | import os, stat, errno | |
|
12 | import match as matchmod | |
|
8 | from __future__ import absolute_import | |
|
9 | ||
|
10 | import errno | |
|
11 | import os | |
|
12 | import stat | |
|
13 | ||
|
14 | from .i18n import _ | |
|
15 | from .node import nullid | |
|
16 | from . import ( | |
|
17 | encoding, | |
|
18 | error, | |
|
19 | match as matchmod, | |
|
20 | osutil, | |
|
21 | parsers, | |
|
22 | pathutil, | |
|
23 | scmutil, | |
|
24 | util, | |
|
25 | ) | |
|
13 | 26 | |
|
14 | 27 | propertycache = util.propertycache |
|
15 | 28 | filecache = scmutil.filecache |
@@ -102,7 +102,6 b'' | |||
|
102 | 102 | mercurial/cmdutil.py not using absolute_import |
|
103 | 103 | mercurial/commands.py not using absolute_import |
|
104 | 104 | mercurial/context.py not using absolute_import |
|
105 | mercurial/dirstate.py not using absolute_import | |
|
106 | 105 | mercurial/dispatch.py requires print_function |
|
107 | 106 | mercurial/exchange.py not using absolute_import |
|
108 | 107 | mercurial/httpclient/__init__.py not using absolute_import |
General Comments 0
You need to be logged in to leave comments.
Login now