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