Skip to content

Commit

Permalink
Merge pull request #638 from vinayak42/master
Browse files Browse the repository at this point in the history
Fixed syntax errors in Kitchen sink Python example code
  • Loading branch information
thinkingserious authored Oct 23, 2018
2 parents b046de1 + 5fc6178 commit d1cc74a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proposals/mail-helper-refactor.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ msg.custom_arg = CustomArg('marketing3', 'true', p=1)
msg.custom_arg = CustomArg('transactional3', 'false', p=1)
msg.custom_arg = [
CustomArg('marketing4', 'false', p=1),
CustomArg('transactional4': 'true', p=1)
CustomArg('transactional4', 'true', p=1)
]

msg.send_at = SendAt(1461775052, p=1)
Expand Down Expand Up @@ -230,13 +230,13 @@ msg.template_id = TemplateId('13b8f94f-bcae-4ec6-b752-70d6cb59f932')
msg.global_header = Header('X-Day', 'Monday')
msg.global_headers = [
Header('X-Month', 'January'),
Header('X-Year': '2017')
Header('X-Year', '2017')
]

msg.section = Section('%section1%', 'Substitution for Section 1 Tag')
msg.section = [
Section('%section2%', 'Substitution for Section 2 Tag'),
Section('%section3%': 'Substitution for Section 3 Tag')
Section('%section3%', 'Substitution for Section 3 Tag')
]

try:
Expand Down

0 comments on commit d1cc74a

Please sign in to comment.