Skip to content

Commit 45c39c4

Browse files
authored
Merge pull request #77 from sendwithus/use-explicit-encoding
Use explicit encoding
2 parents e83fb76 + 8dc0796 commit 45c39c4

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ api.start_on_drip_campaign(
374374

375375
You may specify extra data to be merged into the templates in the drip campaign.
376376

377-
*Note* Any data provided in the `email_data` parameter for `start_on_drip_campaign()` will be used throughout the entire drip campaign.
377+
*Note* &emdash; Any data provided in the `email_data` parameter for `start_on_drip_campaign()` will be used throughout the entire drip campaign.
378378

379379
```python
380380
api.start_on_drip_campaign(
@@ -634,9 +634,9 @@ api = sendwithus.api(api_key='YOUR-API-KEY', DEBUG=True)
634634

635635
Sendwithus' API typically sends responses back in these ranges:
636636

637-
- 2xx Successful Request
638-
- 4xx Failed Request (Client error)
639-
- 5xx Failed Request (Server error)
637+
- 2xx &emdash; Successful Request
638+
- 4xx &emdash; Failed Request (Client error)
639+
- 5xx &emdash; Failed Request (Server error)
640640

641641
If you're receiving an error in the 400 response range follow these steps:
642642

sendwithus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '5.2.0'
1+
version = '5.2.1'

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
from distutils.core import setup
22
from setuptools import find_packages
33

4-
with open('README.md') as fp:
4+
from io import open
5+
6+
with open('README.md', encoding="utf-8") as fp:
57
long_description = fp.read()
68

79
setup(
810
name='sendwithus',
9-
version='5.2.0',
11+
version='5.2.1',
1012
author='sendwithus',
1113
author_email='us@sendwithus.com',
1214
packages=find_packages(),

0 commit comments

Comments
 (0)