cliapp otherwise prints 'None' as the synopsis which looks wrong.
---
morphlib/plugins/branch_and_merge_plugin.py | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/morphlib/plugins/branch_and_merge_plugin.py
b/morphlib/plugins/branch_and_merge_plugin.py
index 384f055..8b629a0 100644
--- a/morphlib/plugins/branch_and_merge_plugin.py
+++ b/morphlib/plugins/branch_and_merge_plugin.py
@@ -46,11 +46,14 @@ class BranchAndMergePlugin(cliapp.Plugin):
arg_synopsis='BRANCH')
self.app.add_subcommand('edit', self.edit,
arg_synopsis='SYSTEM STRATUM [CHUNK]')
- self.app.add_subcommand('petrify', self.petrify)
- self.app.add_subcommand('unpetrify', self.unpetrify)
+ self.app.add_subcommand('petrify', self.petrify,
+ arg_synopsis='')
+ self.app.add_subcommand('unpetrify', self.unpetrify,
+ arg_synopsis='')
self.app.add_subcommand('build', self.build,
arg_synopsis='SYSTEM')
- self.app.add_subcommand('status', self.status)
+ self.app.add_subcommand('status', self.status,
+ arg_synopsis='')
# Advanced commands
self.app.add_subcommand('foreach', self.foreach,
--
1.7.10.4