diff mercurial/bundlecaches.py @ 45785:80f32ec8653a

clonebundle: move the manifest filename to a constant I am about to add more reference to it, so I would rather have it an explicit constant. This allow to unify various call too. Differential Revision: https://phab.mercurial-scm.org/D9209
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 14 Oct 2020 17:46:28 +0200
parents 74271829ddc0
children f4c325bf80fc
line wrap: on
line diff
--- a/mercurial/bundlecaches.py	Thu Oct 15 15:57:36 2020 +0200
+++ b/mercurial/bundlecaches.py	Wed Oct 14 17:46:28 2020 +0200
@@ -16,6 +16,8 @@
 
 urlreq = util.urlreq
 
+CB_MANIFEST_FILE = b'clonebundles.manifest'
+
 
 @attr.s
 class bundlespec(object):