1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-07 13:48:43 +02:00

- renamed "PackageNotInstalled" exception to "ServiceNotInstalled"

- also catch this exception in babysitter.py
This commit is contained in:
Marcus Huewe
2011-03-30 01:10:48 +02:00
parent 8ab7ab3caa
commit be4f1f350e
3 changed files with 8 additions and 5 deletions

View File

@@ -158,6 +158,10 @@ def run(prg):
print >>sys.stderr, e.msg
return 1
except oscerr.ServiceNotInstalled, e:
print >>sys.stderr, e.msg
return 1
except oscerr.WorkingCopyOutdated, e:
print >>sys.stderr, e
return 1