We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab9745 commit 7a2cf9eCopy full SHA for 7a2cf9e
2 files changed
setup.py
@@ -4,7 +4,7 @@
4
import subprocess
5
6
setup(name="stitchclient",
7
- version="0.4.3",
+ version="0.4.4",
8
description="A Stitch API client for Python",
9
author="Stitch",
10
author_email="support@stitchdata.com",
stitchclient/client.py
@@ -126,7 +126,7 @@ def _stitch_request(self, body):
126
127
def _send_batch(self, batch):
128
logger.debug("Sending batch of %s entries", len(batch))
129
- body = self._serialize_entries(batch)
+ body = self._serialize_entries(batch).encode('utf8')
130
response = self._stitch_request(body)
131
132
if response.status_code < 300:
0 commit comments