change 'callback' to 'replier' so code runs

Tanuj 2017-11-04 00:44:34 +00:00
parent 8289792703
commit fd0632c612

@ -33,7 +33,7 @@ def replier(update):
client.send_message(PeerUser(update.user_id), update.message[::-1]) client.send_message(PeerUser(update.user_id), update.message[::-1])
client.add_update_handler(callback) client.add_update_handler(replier)
input('Press enter to stop this!') input('Press enter to stop this!')
``` ```