From fd0632c612927600e0de683efe2c05ec305f5d73 Mon Sep 17 00:00:00 2001 From: Tanuj Date: Sat, 4 Nov 2017 00:44:34 +0000 Subject: [PATCH] change 'callback' to 'replier' so code runs --- Working-with-Updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-with-Updates.md b/Working-with-Updates.md index d7880a0..0ab8046 100644 --- a/Working-with-Updates.md +++ b/Working-with-Updates.md @@ -33,7 +33,7 @@ def replier(update): 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!') ```