File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ api.start_on_drip_campaign(
374374
375375You 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
380380api.start_on_drip_campaign(
@@ -634,9 +634,9 @@ api = sendwithus.api(api_key='YOUR-API-KEY', DEBUG=True)
634634
635635Sendwithus' 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
641641If you're receiving an error in the 400 response range follow these steps:
642642
Original file line number Diff line number Diff line change 1- version = '5.2.0 '
1+ version = '5.2.1 '
Original file line number Diff line number Diff line change 11from distutils .core import setup
22from 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
79setup (
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 (),
You can’t perform that action at this time.
0 commit comments