diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/vote.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/vote.py b/modules/vote.py index b7bf6ec1..02e5447e 100644 --- a/modules/vote.py +++ b/modules/vote.py @@ -89,8 +89,9 @@ class Module(ModuleManager.BaseModule): vote = self._start_vote(event["target"], event["args"]) event["stdout"].write( - "Vote %s started. use '%svote <option>' to vote (options: %s)" % - (vote["id"], event["command_prefix"], self._format_options(vote))) + "Vote %s started. use '%svote %s <option>' to vote (options: %s)" % + (vote["id"], event["command_prefix"], vote["id"], + self._format_options(vote))) @utils.hook("received.command.endvote", channel_only=True, min_args=1) def end_vote(self, event): |
