diff options
| author | Jan Tuomi <jan-sebastian.tuomi@aalto.fi> | 2016-07-18 22:18:07 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan-sebastian.tuomi@aalto.fi> | 2016-07-18 22:18:07 +0300 |
| commit | 6ee34bda43b1e4539eb2bfc2d35a30ec08af638a (patch) | |
| tree | 52cab30ada4c4d977e3ee417731cf28f53807f70 | |
| parent | 01299118fa33236323500b532829680e99a9893c (diff) | |
Add welcome text
| -rwxr-xr-x | radiodiodibot.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/radiodiodibot.py b/radiodiodibot.py index 6deb554..8533aa9 100755 --- a/radiodiodibot.py +++ b/radiodiodibot.py @@ -44,8 +44,11 @@ except: print("Please install telepot before using radiodiodibot.") sys.exit(1) + # Entry point def main(): + print("=== Radiodiodibot ===") + print("Press CTRL-C to exit.") # Get default parameter values from the config file telegram_bot_token = config["GENERAL"]["TelegramBotToken"] shoutbox_api_url = config["GENERAL"]["ShoutboxApiUrl"] |
