From 83812f3af6e158b4549f07e852da432edf5d5e17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jannes=20H=C3=B6ke?= Date: Sun, 22 Nov 2015 19:20:05 +0100 Subject: [PATCH] rename boteventhandler.py to updater.py --- telegram/__init__.py | 2 +- telegram/{boteventhandler.py => updater.py} | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) rename telegram/{boteventhandler.py => updater.py} (98%) diff --git a/telegram/__init__.py b/telegram/__init__.py index 742c83718..52f49691d 100644 --- a/telegram/__init__.py +++ b/telegram/__init__.py @@ -48,7 +48,7 @@ from .message import Message from .update import Update from .bot import Bot from .dispatcher import Dispatcher -from .boteventhandler import Updater +from .updater import Updater __all__ = ['Bot', 'Updater', 'Dispatcher', 'Emoji', 'TelegramError', 'InputFile', 'ReplyMarkup', 'ForceReply', 'ReplyKeyboardHide', diff --git a/telegram/boteventhandler.py b/telegram/updater.py similarity index 98% rename from telegram/boteventhandler.py rename to telegram/updater.py index 4d58f65da..ee302e234 100644 --- a/telegram/boteventhandler.py +++ b/telegram/updater.py @@ -1,9 +1,8 @@ #!/usr/bin/env python """ -This module contains the class BotEventHandler, which tries to make creating - -Telegram Bots intuitive! +This module contains the class Updater, which tries to make creating Telegram +Bots intuitive! """ import logging import os