diff options
author | 2005-08-14 16:49:41 +0000 | |
---|---|---|
committer | 2005-08-14 16:49:41 +0000 | |
commit | 2a080db1a8654f5f5bc65c261a810016df010025 (patch) | |
tree | 8074c47b665dd112ec2e42be7f036aaa509bfd49 /pym | |
parent | domain support, and a few underlying repository tweaks for configured package... (diff) | |
download | portage-cvs-2a080db1a8654f5f5bc65c261a810016df010025.tar.gz portage-cvs-2a080db1a8654f5f5bc65c261a810016df010025.tar.bz2 portage-cvs-2a080db1a8654f5f5bc65c261a810016df010025.zip |
fix logic error in sandbox
Diffstat (limited to 'pym')
-rw-r--r-- | pym/portage.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/portage.py b/pym/portage.py index 8cc4982..988d904 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2,10 +2,10 @@ # portage.py -- core Portage functionality # Copyright 1998-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/pym/portage.py,v 1.589 2005/04/29 04:43:19 vapier Exp $ -cvs_id_string="$Id: portage.py,v 1.589 2005/04/29 04:43:19 vapier Exp $"[5:-2] +# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/pym/portage.py,v 1.590 2005/08/14 16:49:41 genone Exp $ +cvs_id_string="$Id: portage.py,v 1.590 2005/08/14 16:49:41 genone Exp $"[5:-2] -VERSION="$Revision: 1.589 $"[11:-2] + "-cvs" +VERSION="$Revision: 1.590 $"[11:-2] + "-cvs" # =========================================================================== # START OF IMPORTS -- START OF IMPORTS -- START OF IMPORTS -- START OF IMPORT @@ -5322,7 +5322,7 @@ for group in groups: # Clear the cache dircache={} -if not "sandbox" in features or not "usersandbox" in features: +if not "sandbox" in features and not "usersandbox" in features: portage_exec.sandbox_capable = False fetcher=None |