From 893624422823fafc2d76eab2a1ca4e1ae4b4ab5b Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 10 Oct 2009 10:41:23 +0000 Subject: Bug #288025 - Avoid AttributeError on OSes that don't have os.statvfs. svn path=/main/trunk/; revision=14553 --- pym/portage/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 94c698cc5..299615c4f 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -258,10 +258,12 @@ _os_overrides = { id(_os.fdopen) : _os.fdopen, id(_os.popen) : _os.popen, id(_os.read) : _os.read, - id(_os.statvfs) : _os.statvfs, id(_os.system) : _os.system, } +if hasattr(_os, 'statvfs'): + _os_overrides[id(_os.statvfs)] = _os.statvfs + os = _unicode_module_wrapper(_os, overrides=_os_overrides, encoding=_encodings['fs']) _os_merge = _unicode_module_wrapper(_os, -- cgit v1.2.3-1-g7c22