2 Commits
2.1.1 ... 2.1.2

Author SHA1 Message Date
deesiigneer
da86771e3c version bump 2022-07-20 22:21:33 +03:00
deesiigneer
479a02b95f transactions fix #9 2022-07-20 22:20:22 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
from .api import *
__version__ = "2.1.1"
__version__ = "2.1.2"

View File

@@ -140,7 +140,7 @@ class SPAPI:
'amount': amount,
'comment': comment
}
response = self.__make_request('POST', 'transactions', data=body)
response = self.__make_request('POST', '/transactions', data=body)
if not response.ok:
return None
try: