diff --git a/examples/detailed_example/detailed_example.py b/examples/detailed_example/detailed_example.py index f481832..4c848e8 100644 --- a/examples/detailed_example/detailed_example.py +++ b/examples/detailed_example/detailed_example.py @@ -20,7 +20,7 @@ commands = { # command description used in the "help" command } imageSelect = types.ReplyKeyboardMarkup(one_time_keyboard=True) # create the image selection keyboard -imageSelect.add('cock', 'pussy') +imageSelect.add('Mickey', 'Minnie') hideBoard = types.ReplyKeyboardRemove() # if sent as reply_markup, will hide the keyboard @@ -113,7 +113,7 @@ def msg_image_select(m): bot.send_photo(cid, open('kitten.jpg', 'rb'), reply_markup=hideBoard) userStep[cid] = 0 else: - bot.send_message(cid, "Don't type bullsh*t, if I give you a predefined keyboard!") + bot.send_message(cid, "Don't type crap, if I give you a predefined keyboard!") bot.send_message(cid, "Please try again")