From 6a6a27e07ba5a486dff58bbe5c4d8ef103b75d69 Mon Sep 17 00:00:00 2001 From: Jakub Reczko Date: Sun, 12 Jun 2016 18:01:07 +0200 Subject: [PATCH] Fixed missing parameter in endpoint URL --- voucherify/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voucherify/client.py b/voucherify/client.py index 8259875a..8b869593 100644 --- a/voucherify/client.py +++ b/voucherify/client.py @@ -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,