From 77ea95f0a9ba4cf718071f8fd3bbb594f2e18a97 Mon Sep 17 00:00:00 2001 From: jesopo Date: Tue, 18 Jun 2019 17:33:42 +0100 Subject: [PATCH] Remove "!" from help strings --- modules/8ball.py | 2 +- modules/dice.py | 2 +- modules/pong.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/8ball.py b/modules/8ball.py index 864c40f2..5cacecfd 100644 --- a/modules/8ball.py +++ b/modules/8ball.py @@ -35,7 +35,7 @@ class Module(ModuleManager.BaseModule): @utils.hook("received.command.8ball", min_args=1) def decide(selfs, event): """ - :help: Ask the mystic 8ball a question! + :help: Ask the mystic 8ball a question :usage: """ event["stdout"].write("You shake the magic ball... it says %s" % diff --git a/modules/dice.py b/modules/dice.py index b3e93555..6fb967a7 100644 --- a/modules/dice.py +++ b/modules/dice.py @@ -9,7 +9,7 @@ class Module(ModuleManager.BaseModule): @utils.hook("received.command.roll", min_args=1) def roll_dice(self, event): """ - :help: Roll some dice, DND style! + :help: Roll some dice, DND style :usage: [1-5]d[1-20] """ roll = event["args_split"][0].lower() diff --git a/modules/pong.py b/modules/pong.py index 1822a8a7..c8ffe612 100644 --- a/modules/pong.py +++ b/modules/pong.py @@ -6,6 +6,6 @@ class Module(ModuleManager.BaseModule): @utils.hook("received.command.ping") def pong(self, event): """ - :help: Ping pong! + :help: Ping pong """ event["stdout"].write("Pong!")