rename boteventhandler.py to updater.py

This commit is contained in:
Jannes Höke 2015-11-22 19:20:05 +01:00
parent 658b5ff1c0
commit 83812f3af6
2 changed files with 3 additions and 4 deletions

View file

@ -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',

View file

@ -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