1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-02-23 18:52:10 +01:00

- babysitter.py: catch util.packagequery.PackageError

This commit is contained in:
Marcus Huewe 2010-10-21 21:51:20 +02:00
parent 1f51445859
commit 8d0778aff3

View File

@ -165,6 +165,10 @@ def run(prg):
print >>sys.stderr, e.msg
return 1
except PackageError, e:
print >>sys.stderr, '%s:' % e.fname, e.msg
return 1
except RPMError, e:
print >>sys.stderr, e
return 1