##// END OF EJS Templates
obsolete: use absolute_import
Gregory Szorc -
r27332:04f346b8 default
parent child Browse files
Show More
@@ -67,10 +67,20 b' The header is followed by the markers. M'
67 67 comment associated with each format for details.
68 68
69 69 """
70 import errno, struct
71 import util, base85, node, parsers, error
72 import phases
73 from i18n import _
70 from __future__ import absolute_import
71
72 import errno
73 import struct
74
75 from .i18n import _
76 from . import (
77 base85,
78 error,
79 node,
80 parsers,
81 phases,
82 util,
83 )
74 84
75 85 _pack = struct.pack
76 86 _unpack = struct.unpack
@@ -122,7 +122,6 b''
122 122 mercurial/mail.py requires print_function
123 123 mercurial/manifest.py not using absolute_import
124 124 mercurial/mdiff.py not using absolute_import
125 mercurial/obsolete.py not using absolute_import
126 125 mercurial/patch.py not using absolute_import
127 126 mercurial/pure/base85.py not using absolute_import
128 127 mercurial/pure/bdiff.py not using absolute_import
General Comments 0
You need to be logged in to leave comments. Login now