diff options
Diffstat (limited to 'manifest.py')
-rw-r--r-- | manifest.py | 4 |
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 | ||
16 | import os | 16 | import os |
17 | 17 | ||
18 | from error import ManifestParseError | ||
18 | from editor import Editor | 19 | from editor import Editor |
19 | from git_config import GitConfig | 20 | from git_config import GitConfig |
20 | from project import MetaProject | 21 | from 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' | ||