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

Merge branch 'master' of git://gitorious.org/opensuse/osc

This commit is contained in:
Marcus Huewe 2010-02-25 14:13:23 +01:00
commit 12d8824e93
2 changed files with 3 additions and 8 deletions

View File

@ -134,10 +134,6 @@ def run(prg):
print >>sys.stderr, e.msg
return 1
except IOError, e:
print >>sys.stderr, e
return 1
except AttributeError, e:
print >>sys.stderr, e
return 1

View File

@ -335,10 +335,9 @@ def verify_pacs(pac_list, key_list):
except Exception, e:
failed = True
print pkg, ':', e
except Exception, e:
print str(e)
except:
checker.cleanup()
sys.exit(1)
raise
if failed:
checker.cleanup()