changeset 38796:f956dc7217fc

linelog: fix import statements to pass the import checker on py3 Differential Revision: https://phab.mercurial-scm.org/D4050
author Augie Fackler <augie@google.com>
date Wed, 01 Aug 2018 23:08:18 -0400
parents 422d661056be
children 8751d1e2a7ff
files mercurial/linelog.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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')