##// END OF EJS Templates
manifest: use absolute_import
Gregory Szorc -
r27502:2df7f5c0 default
parent child Browse files
Show More
@@ -5,11 +5,21 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 mdiff, parsers, error, revlog, util
9
10 import array, struct
10 import array
11 import heapq
11 import os
12 import os
12 import heapq
13 import struct
14
15 from .i18n import _
16 from . import (
17 error,
18 mdiff,
19 parsers,
20 revlog,
21 util,
22 )
13
23
14 propertycache = util.propertycache
24 propertycache = util.propertycache
15
25
@@ -116,7 +116,6 b''
116 mercurial/lsprofcalltree.py not using absolute_import
116 mercurial/lsprofcalltree.py not using absolute_import
117 mercurial/lsprofcalltree.py requires print_function
117 mercurial/lsprofcalltree.py requires print_function
118 mercurial/mail.py requires print_function
118 mercurial/mail.py requires print_function
119 mercurial/manifest.py not using absolute_import
120 setup.py not using absolute_import
119 setup.py not using absolute_import
121 tests/filterpyflakes.py requires print_function
120 tests/filterpyflakes.py requires print_function
122 tests/generate-working-copy-states.py requires print_function
121 tests/generate-working-copy-states.py requires print_function
General Comments 0
You need to be logged in to leave comments. Login now