Skip to content

Commit

Permalink
Do not force ascii. Fixes #114.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich Leland committed Nov 13, 2016
1 parent fa7bd95 commit bfc4cf7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sparkpost/transmissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ def send(self, **kwargs):
"""

payload = self._translate_keys(**kwargs)
results = self.request('POST', self.uri, data=json.dumps(payload))
results = self.request('POST', self.uri,
data=json.dumps(payload, ensure_ascii=False))
return results

def _fetch_get(self, transmission_id):
Expand Down

0 comments on commit bfc4cf7

Please sign in to comment.