From 4faa4774bd6f5547b14f5150638cedcccf2ec6aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Fri, 22 Apr 2016 09:11:52 +0200 Subject: [PATCH] Remove bot token --- examples/inlinekeyboard_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/inlinekeyboard_example.py b/examples/inlinekeyboard_example.py index f7cb4895f..42ce67825 100644 --- a/examples/inlinekeyboard_example.py +++ b/examples/inlinekeyboard_example.py @@ -100,7 +100,7 @@ def error(bot, update, error): logging.warning('Update "%s" caused error "%s"' % (update, error)) # Create the Updater and pass it your bot's token. -updater = Updater("148447715:AAH4M0gzPG11_mdQS1Qeb0Ex30I5-rw9bMY") +updater = Updater("TOKEN") # The command updater.dispatcher.addHandler(CommandHandler('set', set_value))