From cc6c79643e1cafad565424caabe581e7b548bf6f Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Fri, 3 Jul 2009 15:29:02 -0700 Subject: Make refs/remotes/m management the manifest object's responsibility I plan to have the new submodule manifest format use a different layout for the m refs than the XML manifest format has used in the past. Thus we need to move the behavior management into the manifest object, and out of the project, so we can change it. Signed-off-by: Shawn O. Pearce --- manifest.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'manifest.py') diff --git a/manifest.py b/manifest.py index bf801dfa..0762098b 100644 --- a/manifest.py +++ b/manifest.py @@ -35,3 +35,10 @@ class Manifest(object): @property def IsMirror(self): return self.manifestProject.config.GetBoolean('repo.mirror') + + @property + def projects(self): + return {} + + def SetMRefs(self, project): + pass -- cgit v1.2.3-54-g00ecf