# HG changeset patch # User Augie Fackler # Date 1533179298 14400 # Node ID f956dc7217fc0c5bd74e15d0b0c52d62bdc2be39 # Parent 422d661056be5f5336cfae0c6aa302f6be76a96c linelog: fix import statements to pass the import checker on py3 Differential Revision: https://phab.mercurial-scm.org/D4050 diff -r 422d661056be -r f956dc7217fc 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')