aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-28 11:54:43 +0000
committerGravatar jesopo2018-10-28 11:54:55 +0000
commitb34f4d70a597fb410290ccbe3c3f74fecce1f175 (patch)
tree6049a0aecd9e53424c2044975685ed6f9ca987b1 /modules
parentTypo in utils.parse_docstring, 'multiple_items' -> 'var_items' (diff)
signature
Remove extra ) in modules/commands.py
Diffstat (limited to 'modules')
-rw-r--r--modules/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands.py b/modules/commands.py
index 972a6cdd..83eb3cb1 100644
--- a/modules/commands.py
+++ b/modules/commands.py
@@ -267,7 +267,7 @@ class Module(ModuleManager.BaseModule):
usage = self._get_usage(hooks[0], command_str)
if usage:
- event["stdout"].write("Usage: %s" % usage))
+ event["stdout"].write("Usage: %s" % usage)
else:
event["stderr"].write("No usage help available for %s" % command)
else: