PEP8: long line complain.

This commit is contained in:
Alberto Planas 2016-05-04 14:37:03 +02:00
parent 74cc03e1b9
commit e0b0d86da2

View File

@ -35,8 +35,11 @@ class OpenQAReport(object):
self.comment = CommentAPI(api.apiurl) self.comment = CommentAPI(api.apiurl)
def _package_url(self, package): def _package_url(self, package):
link = 'https://build.opensuse.org/package/live_build_log/%s/%s/%s/%s' % ( link = 'https://build.opensuse.org/package/live_build_log/%s/%s/%s/%s'
package['project'], package['package'], package['repository'], package['arch']) link = link % (package['project'],
package['package'],
package['repository'],
package['arch'])
text = '[%s](%s)' % (package['arch'], link) text = '[%s](%s)' % (package['arch'], link)
return text return text