From dd283d88f6e043d461b50c4660799d893efeb286 Mon Sep 17 00:00:00 2001 From: "neiljp (Neil Pilgrim)" Date: Mon, 2 Oct 2017 13:40:12 -0700 Subject: [PATCH] bots: zulip_bot_output.py: Adjust examples in help text. --- zulip_bots/zulip_bots/zulip_bot_output.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zulip_bots/zulip_bots/zulip_bot_output.py b/zulip_bots/zulip_bots/zulip_bot_output.py index 5928898..8113b07 100644 --- a/zulip_bots/zulip_bots/zulip_bot_output.py +++ b/zulip_bots/zulip_bots/zulip_bot_output.py @@ -20,7 +20,8 @@ current_dir = os.path.dirname(os.path.abspath(__file__)) def parse_args(): description = ( "A tool to test a bot: given a provided message, provides the bot response.\n\n" - 'Example: %(prog)s xkcd "1"') + 'Examples: %(prog)s xkcd 1\n' + ' %(prog)s ./bot_folder/my_own_bot.py "test message"') epilog = ( "The message need only be enclosed in quotes if empty or containing spaces.\n\n" "(Internally, this program loads bot-related code from the library code and\n"