summaryrefslogtreecommitdiffstats
path: root/manifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.py')
-rw-r--r--manifest.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/manifest.py b/manifest.py
index a2fc9601..f737e866 100644
--- a/manifest.py
+++ b/manifest.py
@@ -15,6 +15,7 @@
15 15
16import os 16import os
17 17
18from error import ManifestParseError
18from editor import Editor 19from editor import Editor
19from git_config import GitConfig 20from git_config import GitConfig
20from project import MetaProject 21from project import MetaProject
@@ -45,3 +46,6 @@ class Manifest(object):
45 46
46 def SetMRefs(self, project): 47 def SetMRefs(self, project):
47 pass 48 pass
49
50 def Upgrade_Local(self, old):
51 raise ManifestParseError, 'unsupported upgrade path'