summaryrefslogtreecommitdiff
path: root/morphlib
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-06-11 11:08:53 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-06-11 11:08:53 +0100
commitb8720ad3909a6d857aed55d0a639e647291fc8eb (patch)
tree02403c807737f8e23c6daf28502547dbb30c52b8 /morphlib
parent0b5c53076613fb0ee1fc5f412b16fc6e98b5b62b (diff)
downloadmorph-b8720ad3909a6d857aed55d0a639e647291fc8eb.tar.gz
Fix hello plugin's argument synopsis
Diffstat (limited to 'morphlib')
-rw-r--r--morphlib/plugins/hello_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/plugins/hello_plugin.py b/morphlib/plugins/hello_plugin.py
index b51c8b5c..8d166d16 100644
--- a/morphlib/plugins/hello_plugin.py
+++ b/morphlib/plugins/hello_plugin.py
@@ -20,7 +20,7 @@ import cliapp
class Hello(cliapp.Plugin):
def enable(self):
- self.app.add_subcommand('hello', self.hello)
+ self.app.add_subcommand('hello', self.hello, arg_synopsis='')
def disable(self):
pass