Skip to content

Commit 9cb744b

Browse files
committed
Merge branch 'develop'
2 parents 69bf6b9 + f198053 commit 9cb744b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

amazon_paapi/errors/exceptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ class ItemsNotFoudException(AmazonException):
3333
pass
3434

3535
class TooManyRequestsException(AmazonException):
36-
"""Raised if too many requests are made"""
36+
"""Raised when requests limit is reached"""
3737
pass
3838

3939
class InvalidPartnerTagException(AmazonException):
4040
"""Raised if the partner tag is not present or invalid"""
4141
pass
4242

4343
class AssociateValidationException(AmazonException):
44-
"""Raised when credentials are not valid for the selected country."""
44+
"""Raised when credentials are not valid for the selected country"""
4545
pass

amazon_paapi/tools/asin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def get_asin(text: str) -> str:
1515
if asin:
1616
return asin.group(2)
1717
else:
18-
raise AsinNotFoundException('Asin not found found')
18+
raise AsinNotFoundException('Asin not found: ' + text)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name='python-amazon-paapi',
8-
version='4.1.0',
8+
version='4.1.1',
99
author='Sergio Abad',
1010
author_email='[email protected]',
1111
description='Amazon Product Advertising API 5.0 wrapper for Python',

0 commit comments

Comments
 (0)