diff mercurial/templatekw.py @ 38589:1c93e0237a24

diffutil: move the module out of utils package mercurial.utils modules inherit the property of the mercurial.util, which is no dependency on ui, repo, ctx, etc. As the diffutil module seems to reside in the scmutil layer, it's probably better to not put it under the utils package.
author Yuya Nishihara <yuya@tcha.org>
date Fri, 06 Jul 2018 21:49:25 +0900
parents b62000a28812
children 87a581d1391c
line wrap: on
line diff
--- a/mercurial/templatekw.py	Fri Jul 06 21:41:36 2018 +0900
+++ b/mercurial/templatekw.py	Fri Jul 06 21:49:25 2018 +0900
@@ -14,6 +14,7 @@
 )
 
 from . import (
+    diffutil,
     encoding,
     error,
     hbisect,
@@ -27,7 +28,6 @@
     util,
 )
 from .utils import (
-    diffutil,
     stringutil,
 )