diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-06-16 20:13:16 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-06-16 20:13:16 +0000 |
commit | 89677e03e6a046f69d6f591d0f49dd3e91f194b9 (patch) | |
tree | 4130b5cb9f9ff53de48d507e35fdbbe0bcb75c66 | |
parent | bc9d5c1d3235578f96d0da753b8123004b3ad4be (diff) | |
download | portage-89677e03e6a046f69d6f591d0f49dd3e91f194b9.tar.gz portage-89677e03e6a046f69d6f591d0f49dd3e91f194b9.tar.bz2 portage-89677e03e6a046f69d6f591d0f49dd3e91f194b9.zip |
Import missing PermissionDenied class. Thanks to marienz for reporting (and suggesting pyflakes).
svn path=/main/trunk/; revision=3516
-rw-r--r-- | pym/portage_util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage_util.py b/pym/portage_util.py index b08187ad4..6c39192c0 100644 --- a/pym/portage_util.py +++ b/pym/portage_util.py @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -from portage_exception import PortageException, FileNotFound, OperationNotPermitted, ReadOnlyFileSystem +from portage_exception import PortageException, FileNotFound, \ + OperationNotPermitted, PermissionDenied, ReadOnlyFileSystem import portage_exception import sys,string,shlex,os,errno |