summaryrefslogtreecommitdiffstats
path: root/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'command.py')
-rw-r--r--command.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/command.py b/command.py
index 5ca43f20..9e970e80 100644
--- a/command.py
+++ b/command.py
@@ -62,8 +62,10 @@ class Command(object):
62 def manifest(self): 62 def manifest(self):
63 return self.GetManifest() 63 return self.GetManifest()
64 64
65 def GetManifest(self, reparse=False): 65 def GetManifest(self, reparse=False, type=None):
66 return manifest_loader.GetManifest(self.repodir, reparse) 66 return manifest_loader.GetManifest(self.repodir,
67 reparse=reparse,
68 type=type)
67 69
68 def GetProjects(self, args, missing_ok=False): 70 def GetProjects(self, args, missing_ok=False):
69 """A list of projects that match the arguments. 71 """A list of projects that match the arguments.