Skip to content

Commit b1e5d00

Browse files
authored
Merge pull request #728 from Badiboy/master
Design updates from #711
2 parents 9b279dc + aa02ddb commit b1e5d00

3 files changed

Lines changed: 312 additions & 30 deletions

File tree

examples/detailed_example/detailed_example.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,15 @@ def msg_image_select(m):
105105
# for some reason the 'upload_photo' status isn't quite working (doesn't show at all)
106106
bot.send_chat_action(cid, 'typing')
107107

108-
if text == "cock": # send the appropriate image based on the reply to the "/getImage" command
108+
if text == 'Mickey': # send the appropriate image based on the reply to the "/getImage" command
109109
bot.send_photo(cid, open('rooster.jpg', 'rb'),
110110
reply_markup=hideBoard) # send file and hide keyboard, after image is sent
111111
userStep[cid] = 0 # reset the users step back to 0
112-
elif text == "pussy":
112+
elif text == 'Minnie':
113113
bot.send_photo(cid, open('kitten.jpg', 'rb'), reply_markup=hideBoard)
114114
userStep[cid] = 0
115115
else:
116-
bot.send_message(cid, "Don't type crap, if I give you a predefined keyboard!")
116+
bot.send_message(cid, "Please, use the predefined keyboard!")
117117
bot.send_message(cid, "Please try again")
118118

119119

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ def read(filename):
2424
classifiers=[
2525
'Development Status :: 5 - Production/Stable',
2626
'Programming Language :: Python :: 2',
27-
'Programming Language :: Python :: 2.6',
2827
'Programming Language :: Python :: 2.7',
2928
'Programming Language :: Python :: 3',
3029
'Environment :: Console',

0 commit comments

Comments
 (0)