Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/send_installation_link/web/send_installation_link.py

Issue 29756624: Noissue - Adapt best practices for trailing commas (sitescripts) (Closed)
Patch Set: Re-run script on Python 2, added flake8-commas extension Created April 19, 2018, 2:35 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/reports/bin/updateDigests.py ('k') | sitescripts/stats/bin/logprocessor.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/send_installation_link/web/send_installation_link.py
===================================================================
--- a/sitescripts/send_installation_link/web/send_installation_link.py
+++ b/sitescripts/send_installation_link/web/send_installation_link.py
@@ -26,7 +26,7 @@
except ValueError:
return send_simple_response(
start_response, 400,
- 'Please enter a valid email address.'
+ 'Please enter a valid email address.',
)
config = get_config()
@@ -36,5 +36,5 @@
return send_simple_response(
start_response, 200,
'The app is on the way! '
- 'Please check your email on your smartphone or tablet.'
+ 'Please check your email on your smartphone or tablet.',
)
« no previous file with comments | « sitescripts/reports/bin/updateDigests.py ('k') | sitescripts/stats/bin/logprocessor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld