Skip to content

Commit 6a6a27e

Browse files
author
Jakub Reczko
committed
Fixed missing parameter in endpoint URL
1 parent d6f0639 commit 6a6a27e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

voucherify/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def fetch(self, customer_id):
6969
)
7070

7171
def update(self, customer):
72-
path = '/customers/'
72+
path = '/customers/' + quote(customer.get('id'))
7373

7474
return self.request(
7575
path,

0 commit comments

Comments
 (0)