Index: sitescripts/extensions/utils.py |
=================================================================== |
--- a/sitescripts/extensions/utils.py |
+++ b/sitescripts/extensions/utils.py |
@@ -313,17 +313,18 @@ def getDownloadLinks(result): |
""" |
gets the download links for all extensions and puts them into the config |
object |
""" |
for repo in Configuration.getRepositoryConfigurations(): |
try: |
(downloadURL, version) = _getDownloadLink(repo) |
if downloadURL is None: |
- raise Exception('No download link found for repo: ' + repo) |
+ raise Exception('No download link found for repo: ' + |
+ repo.repositoryName) |
except: |
traceback.print_exc() |
continue |
if not result.has_section(repo.repositoryName): |
result.add_section(repo.repositoryName) |
result.set(repo.repositoryName, 'downloadURL', downloadURL) |
result.set(repo.repositoryName, 'version', version) |