diff mercurial/upgrade_utils/engine.py @ 47099:3aab2330b7d3

sidedata: move sidedata-related utils to the dedicated module Differential Revision: https://phab.mercurial-scm.org/D10360
author Rapha?l Gom?s <rgomes@octobus.net>
date Mon, 19 Apr 2021 11:22:24 +0200
parents 27f1191b1305
children bea4717415c0
line wrap: on
line diff
--- a/mercurial/upgrade_utils/engine.py	Mon Apr 19 11:22:24 2021 +0200
+++ b/mercurial/upgrade_utils/engine.py	Mon Apr 19 11:22:24 2021 +0200
@@ -12,7 +12,6 @@
 from ..i18n import _
 from ..pycompat import getattr
 from .. import (
-    changegroup,
     changelog,
     error,
     filelog,
@@ -45,7 +44,7 @@
             flagutil.REVIDX_HASCOPIESINFO,
             replace=True,
         )
-    return changegroup.get_sidedata_helpers(srcrepo, dstrepo._wanted_sidedata)
+    return sidedatamod.get_sidedata_helpers(srcrepo, dstrepo._wanted_sidedata)
 
 
 def _revlogfrompath(repo, rl_type, path):