Index: sitescripts/extensions/utils.py |
=================================================================== |
--- a/sitescripts/extensions/utils.py |
+++ b/sitescripts/extensions/utils.py |
@@ -323,7 +323,8 @@ |
repo.repositoryName) |
except ExpatError: |
traceback.print_exc() |
- print "Error found while parsing xml from %s link" % repo.repositoryName |
+ print 'Error found while parsing xml from {0} link'\ |
Vasily Kuznetsov
2017/01/09 21:59:54
Breaking lines with a backslash (`\`) is generally
Vasily Kuznetsov
2017/01/09 22:01:12
Sorry, I meant that this print statement will prin
|
+ .format(repo.repositoryName) |
continue |
except: |
traceback.print_exc() |