summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/plugins/deploy_plugin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/morphlib/plugins/deploy_plugin.py b/morphlib/plugins/deploy_plugin.py
index 63fe647b..e921b0af 100644
--- a/morphlib/plugins/deploy_plugin.py
+++ b/morphlib/plugins/deploy_plugin.py
@@ -47,11 +47,11 @@ class DeployPlugin(cliapp.Plugin):
pass
def deploy(self, args):
- '''Build a system from the current system branch'''
+ '''Deploy a built system image.'''
if len(args) < 3:
- raise cliapp.AppException('morph build expects exactly one '
- 'parameter: the system to build')
+ raise cliapp.AppException(
+ 'Too few arguments to deploy command (see help)')
deployment_type = args[0]
system_name = args[1]