summaryrefslogtreecommitdiffstats
path: root/pym/portage/getbinpkg.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-25 04:49:12 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-25 04:49:12 +0000
commit084876034186fb7ccadee0bea99199dbe69a2990 (patch)
tree4d5c9d295980fadb7b92830dc4345634b811ceb5 /pym/portage/getbinpkg.py
parentc1075d63476ff5f848df9e761689bf0c639b5891 (diff)
downloadportage-084876034186fb7ccadee0bea99199dbe69a2990.tar.gz
portage-084876034186fb7ccadee0bea99199dbe69a2990.tar.bz2
portage-084876034186fb7ccadee0bea99199dbe69a2990.zip
Allow SystemExit through as usual.
svn path=/main/trunk/; revision=7025
Diffstat (limited to 'pym/portage/getbinpkg.py')
-rw-r--r--pym/portage/getbinpkg.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pym/portage/getbinpkg.py b/pym/portage/getbinpkg.py
index b5a15aaaf..c16570c46 100644
--- 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: