move botan to contrib

This commit is contained in:
Rahiel Kasim 2016-05-28 09:12:10 +02:00
parent 3907e64966
commit c8497424b7
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
from .deprecate import deprecate 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')

View file

@ -9,7 +9,7 @@ from flaky import flaky
sys.path.append('.') sys.path.append('.')
from telegram.ext.botan import Botan from telegram.contrib.botan import Botan
from tests.base import BaseTest from tests.base import BaseTest