From c0489db17ce427ee05aad9aceb3cda9e05643ade Mon Sep 17 00:00:00 2001 From: Rahiel Kasim Date: Thu, 28 Apr 2016 14:47:56 +0200 Subject: [PATCH] fix import of deprecate function --- telegram/ext/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram/ext/handler.py b/telegram/ext/handler.py index 85805ac3f..fd93b5f42 100644 --- a/telegram/ext/handler.py +++ b/telegram/ext/handler.py @@ -20,7 +20,7 @@ """ This module contains the base class for handlers as used by the Dispatcher """ -from telegram.deprecate import deprecate +from telegram.utils.deprecate import deprecate class Handler(object):