Skip to content

Commit 3268a1d

Browse files
Manuel HuezManuel Huez
authored andcommitted
Fix expand on GET/DELETE requests
1 parent 289930d commit 3268a1d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

processout/networking/request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def get(self, path, data, options):
6363
options -- Options sent with the request
6464
"""
6565
return requests.get(self._client.host + path + '?' +
66-
urlencode(self._get_data(data, options)),
66+
urlencode(self._get_data(data, options), True),
6767
auth = self._authenticate(),
6868
verify = True,
6969
headers = self._get_headers(options))
@@ -105,7 +105,7 @@ def delete(self, path, data, options):
105105
options -- Options sent with the request
106106
"""
107107
return requests.delete(self._client.host + path + '?' +
108-
urlencode(self._get_data(data, options)),
108+
urlencode(self._get_data(data, options), True),
109109
auth = self._authenticate(),
110110
verify = True,
111111
headers = self._get_headers(options))

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
setup(
44
name = 'processout',
55
packages = ['processout', 'processout.errors', 'processout.networking'],
6-
version = '6.5.0',
6+
version = '6.5.1',
77
description = 'ProcessOut API bindings.',
88
author = 'ProcessOut',
99
author_email = '[email protected]',
1010
url = 'https://github.com/processout/processout-python',
11-
download_url = 'https://github.com/processout/processout-python/tarball/6.5.0',
11+
download_url = 'https://github.com/processout/processout-python/tarball/6.5.1',
1212
keywords = ['ProcessOut', 'api', 'bindings'],
1313
classifiers = [],
1414
)

0 commit comments

Comments
 (0)