##// END OF EJS Templates
linelog: fix import statements to pass the import checker on py3...
Augie Fackler -
r38832:f956dc72 default
parent child Browse files
Show More
@@ -23,12 +23,12 b' from __future__ import absolute_import, '
23 import abc
23 import abc
24 import struct
24 import struct
25
25
26 from mercurial import (
27 pycompat,
28 )
29 from .thirdparty import (
26 from .thirdparty import (
30 attr,
27 attr,
31 )
28 )
29 from . import (
30 pycompat,
31 )
32
32
33 _llentry = struct.Struct('>II')
33 _llentry = struct.Struct('>II')
34
34
General Comments 0
You need to be logged in to leave comments. Login now