Bug-fixing in `error.py`

This commit is contained in:
Andrei 2019-01-22 23:19:49 +03:00
parent 21b51580d1
commit 427ac7c43f
4 changed files with 2 additions and 2 deletions

BIN
dist/python3-anticaptcha-1.2.2.tar.gz vendored Normal file

Binary file not shown.

Binary file not shown.

View File

@ -21,4 +21,4 @@ class ParamError(AntiCaptchaApiException):
class IdGetError(AntiCaptchaApiException):
def __init__(self, server_answer):
AntiCaptchaApiException.__init__(self, """\n Пораждается при ошибке получения ID капчи от сервиса. Ответ сервера:\n
{0}""".format(server_answer))
{0}""".format(server_answer))

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name = 'python3-anticaptcha',
version = '1.2.1',
version = '1.2.2',
author = 'AndreiDrang, redV0ID',
packages = ['python3_anticaptcha'],