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

Unified Diff: sitescripts/extensions/utils.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/extensions/utils.py
===================================================================
--- a/sitescripts/extensions/utils.py
+++ b/sitescripts/extensions/utils.py
@@ -333,7 +333,7 @@
"""
for repo in Configuration.getRepositoryConfigurations():
try:
- (downloadURL, version) = _getDownloadLink(repo)
+ downloadURL, version = _getDownloadLink(repo)
if downloadURL is None:
raise Exception('No download link found for repo: ' +
repo.repositoryName)

Powered by Google App Engine
This is Rietveld