Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python_anticaptcha/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def join(self, maximum_time=None):
while not self.check_is_ready():
time.sleep(SLEEP_EVERY_CHECK_FINISHED)
elapsed_time += SLEEP_EVERY_CHECK_FINISHED
if elapsed_time is not None and elapsed_time > maximum_time:
if elapsed_time > maximum_time:
raise AnticaptchaException(
None,
250,
Expand Down Expand Up @@ -108,7 +108,7 @@ def _check_response(self, response):
if response.get("errorId", False) == 11:
response[
"errorDescription"
] = "{} Your missing IP address is propably {}.".format(
] = "{} Your missing IP address is probably {}.".format(
response["errorDescription"], self.client_ip
)
if response.get("errorId", False):
Expand Down
Loading