1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-10 06:46:15 +01:00

- fixes for old python versions

This commit is contained in:
Marcus Huewe 2010-04-22 20:13:58 +02:00
parent 887f03f4f0
commit 5e76b5b0c0

View File

@ -3566,7 +3566,7 @@ def get_package_results(apiurl, prj, package, lastbuild=None, repository=[], arc
rmap['dirty'] = node.get('dirty')
statusnode = node.find('status')
rmap['code'] = statusnode.get('code') if 'code' in statusnode.keys() else ''
rmap['code'] = statusnode.get('code', '')
rmap['details'] = ''
if rmap['code'] in ('expansion error', 'broken', 'blocked', 'finished'):
@ -3581,7 +3581,7 @@ def get_package_results(apiurl, prj, package, lastbuild=None, repository=[], arc
def format_results(results, format):
"""apply selected format on each dict in results and return it as a list of strings"""
return (format % r for r in results)
return [format % r for r in results]
def get_results(apiurl, prj, package, lastbuild=None, repository=[], arch=[]):
r = []