mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 14:56:14 +01:00
- build.Buildinfo: improved error formatting
Use the same formatting for an "unresolvable" error as in "osc results -v"
This commit is contained in:
parent
d0f7c66e80
commit
070daecaf5
@ -100,7 +100,12 @@ class Buildinfo:
|
||||
if root.find('error') != None:
|
||||
sys.stderr.write('buildinfo is broken... it says:\n')
|
||||
error = root.find('error').text
|
||||
sys.stderr.write(error + '\n')
|
||||
if error.startswith('unresolvable: '):
|
||||
sys.stderr.write('unresolvable: ')
|
||||
sys.stderr.write('\n '.join(error[14:].split(',')))
|
||||
else:
|
||||
sys.stderr.write(error)
|
||||
sys.stderr.write('\n')
|
||||
sys.exit(1)
|
||||
|
||||
if not (apiurl.startswith('https://') or apiurl.startswith('http://')):
|
||||
|
Loading…
Reference in New Issue
Block a user