Skip to content

Commit

Permalink
Fixed missing parameter in endpoint URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Reczko committed Jun 12, 2016
1 parent d6f0639 commit 6a6a27e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion voucherify/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def fetch(self, customer_id):
)

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

return self.request(
path,
Expand Down

0 comments on commit 6a6a27e

Please sign in to comment.