summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'g_common/g_common.py')
-rw-r--r--g_common/g_common.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/g_common/g_common.py b/g_common/g_common.py
index 648daa4..1d942e5 100644
--- a/g_common/g_common.py
+++ b/g_common/g_common.py
@@ -170,11 +170,8 @@ def main():
return action_package(repo_location,package_name)
elif action=='usage' or action=='help':
return usage()
- elif action in pms_phases:
- #todo
- raise NotImplementedError
- elif action in actions_wanted:
- raise NotImplementedError
+ elif action in settings.PMS_PHASES:
+ return exec_phase(repo_location,action)
else:
return usage()