# HG changeset patch # User Pierre-Yves David # Date 1459334710 25200 # Node ID 11d7403192806b1e433ee45018685734d309a993 # Parent 9d6d30e36cdd8184edaeda6b3fcac0521a3f7297 revset: move to new style import This unify with the new core Mercurial usage and this will make future changes to the imports easier to track. diff -r 9d6d30e36cdd -r 11d740319280 hgext3rd/topic/revset.py --- a/hgext3rd/topic/revset.py Wed Mar 30 03:44:59 2016 -0700 +++ b/hgext3rd/topic/revset.py Wed Mar 30 03:45:10 2016 -0700 @@ -1,9 +1,17 @@ -from mercurial import error -from mercurial import revset -from mercurial import util +from __future__ import absolute_import + from mercurial.i18n import _ +from mercurial import ( + error, + revset, + util, +) -from . import constants, destination, stack +from . import ( + constants, + destination, + stack, +) try: mkmatcher = revset._stringmatcher