From 93cfb9b8766128cd68bae3a74e98bb7a472517b3 Mon Sep 17 00:00:00 2001 From: Peter Roberts Date: Thu, 26 Mar 2020 12:55:56 +0000 Subject: [PATCH] Tweak !help a bit. --- covbot.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/covbot.py b/covbot.py index 1d4689d..5422f50 100644 --- a/covbot.py +++ b/covbot.py @@ -34,15 +34,21 @@ # command: ( usage, description ) HELP = { - 'cases': ('!cases location', 'Get up to date info on cases, optionally in a specific location. You can give a country code, country, state, county, region or city.'), - 'source': ('!source', 'Find out about my data sources and developers.'), - 'help': ('!help', 'Get a reminder what I can do for you.'), + 'cases': ( + '!cases location', + 'Get up to date info on cases, optionally in a specific location.' + ' You can give a country code, country, state, county, region or city.' + ' E.g. !cases china' + ), 'compare': ( '!compare locations', - 'Compare up to date info on case in multiple locations.' + 'Compare up to date info on cases in multiple locations.' ' Separate the locations with semicolons (;).' ' You can give a country codes, countries, states, counties, regions or cities.' - ) + ' E.g. !compare cn;us;uk;it;de' + ), + 'source': ('!source', 'Find out about my data sources and developers.'), + 'help': ('!help', 'Get a reminder what I can do for you.'), }