From c8497424b73c31290b1b25181f4c82aabc355291 Mon Sep 17 00:00:00 2001 From: Rahiel Kasim Date: Sat, 28 May 2016 09:12:10 +0200 Subject: [PATCH] move botan to contrib --- telegram/{ext => contrib}/botan.py | 0 telegram/utils/botan.py | 4 ++-- tests/test_botan.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename telegram/{ext => contrib}/botan.py (100%) diff --git a/telegram/ext/botan.py b/telegram/contrib/botan.py similarity index 100% rename from telegram/ext/botan.py rename to telegram/contrib/botan.py diff --git a/telegram/utils/botan.py b/telegram/utils/botan.py index e0d2d4b1f..a9f5bb612 100644 --- a/telegram/utils/botan.py +++ b/telegram/utils/botan.py @@ -1,4 +1,4 @@ from .deprecate import deprecate -from telegram.ext.botan import Botan as Bo +from telegram.contrib.botan import Botan as Bo -Botan = deprecate(Bo, 'telegram.utils.botan', 'telegram.ext.botan') +Botan = deprecate(Bo, 'telegram.utils.botan', 'telegram.contrib.botan') diff --git a/tests/test_botan.py b/tests/test_botan.py index 446bcc8ec..a45c28fd0 100644 --- a/tests/test_botan.py +++ b/tests/test_botan.py @@ -9,7 +9,7 @@ from flaky import flaky sys.path.append('.') -from telegram.ext.botan import Botan +from telegram.contrib.botan import Botan from tests.base import BaseTest