linelog: fix import statements to pass the import checker on py3
authorAugie Fackler <augie@google.com>
Wed, 01 Aug 2018 23:08:18 -0400
changeset 38836 f956dc7217fc
parent 38835 422d661056be
child 38837 8751d1e2a7ff
linelog: fix import statements to pass the import checker on py3 Differential Revision: https://phab.mercurial-scm.org/D4050
mercurial/linelog.py
--- a/mercurial/linelog.py	Mon Jul 30 10:42:37 2018 -0400
+++ b/mercurial/linelog.py	Wed Aug 01 23:08:18 2018 -0400
@@ -23,12 +23,12 @@
 import abc
 import struct
 
-from mercurial import (
-    pycompat,
-)
 from .thirdparty import (
     attr,
 )
+from . import (
+    pycompat,
+)
 
 _llentry = struct.Struct('>II')