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

Unified Diff: sitescripts/crashes/web/submitCrash.py

Issue 29670611: Issue 5844 - Remove redundant parentheses in sitescripts and abpsembly (Closed) Base URL: https://hg.adblockplus.org/sitescripts/
Patch Set: Fixed one more case of redundant parentheses Created Jan. 25, 2018, 7:03 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 | « no previous file | sitescripts/extensions/utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/crashes/web/submitCrash.py
===================================================================
--- a/sitescripts/crashes/web/submitCrash.py
+++ b/sitescripts/crashes/web/submitCrash.py
@@ -40,7 +40,7 @@
try:
request_body_size = int(environ.get('CONTENT_LENGTH', 0))
- except (ValueError):
+ except ValueError:
return showError('No content', start_response)
dir = get_config().get('crashes', 'dataPath')
« no previous file with comments | « no previous file | sitescripts/extensions/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld