# HG changeset patch # User Gregory Szorc # Date 1439087985 25200 # Node ID c4ccf2d394a766e31a6c420a9fd9aacaf9d1d92e # Parent ae21d51bdc43e1365a8062a5848ec4d795d4fc8e match: use absolute_import diff -r ae21d51bdc43 -r c4ccf2d394a7 mercurial/match.py --- a/mercurial/match.py Sat Aug 08 19:32:19 2015 -0700 +++ b/mercurial/match.py Sat Aug 08 19:39:45 2015 -0700 @@ -5,9 +5,17 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -import copy, os, re -import util, pathutil -from i18n import _ +from __future__ import absolute_import + +import copy +import os +import re + +from .i18n import _ +from . import ( + pathutil, + util, +) propertycache = util.propertycache