projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1075d6
)
Allow SystemExit through as usual.
author
Zac Medico
<zmedico@gentoo.org>
Mon, 25 Jun 2007 04:49:12 +0000
(
04:49
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Mon, 25 Jun 2007 04:49:12 +0000
(
04:49
-0000)
svn path=/main/trunk/; revision=7025
pym/portage/getbinpkg.py
patch
|
blob
|
history
diff --git
a/pym/portage/getbinpkg.py
b/pym/portage/getbinpkg.py
index b5a15aaaf9daf4c00021edcac11f8c66e6ad1a4d..c16570c468152ef9ec941daa38269d47949e6587 100644
(file)
--- a/
pym/portage/getbinpkg.py
+++ b/
pym/portage/getbinpkg.py
@@
-422,6
+422,8
@@
def file_get_lib(baseurl,dest,conn=None):
rc = 0
try:
f = conn.open(address)
+ except SystemExit:
+ raise
except Exception:
rc = 1
else: