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

Unified Diff: sitescripts/subscriptions/web/fallback.py

Issue 29670611: Issue 5844 - Remove redundant parentheses in sitescripts and abpsembly (Closed) Base URL: https://hg.adblockplus.org/sitescripts/
Patch Set: Created Jan. 16, 2018, 5:28 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
Index: sitescripts/subscriptions/web/fallback.py
===================================================================
--- a/sitescripts/subscriptions/web/fallback.py
+++ b/sitescripts/subscriptions/web/fallback.py
@@ -27,7 +27,7 @@
def handleSubscriptionFallbackRequest(environ, start_response):
setupStderr(environ['wsgi.errors'])
- (redirects, gone) = getData()
+ redirects, gone = getData()
start_response('200 OK', [('Content-Type', 'text/plain')])
@@ -48,7 +48,7 @@
def getData():
processed = set()
- (redirectData, goneData) = subscriptionParser.getFallbackData()
+ redirectData, goneData = subscriptionParser.getFallbackData()
redirects = processData(redirectData, processed, {})
gone = processData(goneData, processed, set())

Powered by Google App Engine
This is Rietveld