mercurial/match.py
changeset 25958 c4ccf2d394a7
parent 25875 511e1949d557
child 26014 a5f62af29517
--- 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