# HG changeset patch # User Gregory Szorc # Date 1439085849 25200 # Node ID 015ded095933934f3cc9780f74e2c6a92b24c683 # Parent a75cda2dfc19d6abf31fcec4490aa90d12f5afa0 dagutil: use absolute_import diff -r a75cda2dfc19 -r 015ded095933 mercurial/dagutil.py --- a/mercurial/dagutil.py Sat Aug 08 19:03:34 2015 -0700 +++ b/mercurial/dagutil.py Sat Aug 08 19:04:09 2015 -0700 @@ -6,9 +6,10 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -from node import nullrev -from i18n import _ +from __future__ import absolute_import +from .i18n import _ +from .node import nullrev class basedag(object): '''generic interface for DAGs