summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-22 23:35:43 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-22 23:35:43 +0000
commita1dd09f64ccefbff495d0607aeec5422f32b93fb (patch)
tree62c9a69da0de2e3937f974da75c0eb438bf0c0b2 /pym/portage.py
parent8e074705115908deec094527f4c60a4c31941827 (diff)
downloadportage-a1dd09f64ccefbff495d0607aeec5422f32b93fb.tar.gz
portage-a1dd09f64ccefbff495d0607aeec5422f32b93fb.tar.bz2
portage-a1dd09f64ccefbff495d0607aeec5422f32b93fb.zip
- Make elog finalize() handling safe for PORTAGE_CONFIGROOT. (trunk r6955)
- Dump mod_echo elog output inside post_emerge(), just before the other notifications that happen at exit. (trunk r6953) svn path=/main/branches/2.1.2/; revision=6958
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 1e3923dd7..d2f2cb027 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -560,7 +560,7 @@ def elog_process(cpv, mysettings):
signal.alarm(0)
if hasattr(m, "finalize") and not m.finalize in _elog_atexit_handlers:
_elog_atexit_handlers.append(m.finalize)
- atexit_register(m.finalize, mysettings)
+ atexit_register(m.finalize)
except (ImportError, AttributeError), e:
writemsg("!!! Error while importing logging modules " + \
"while loading \"mod_%s\":\n" % str(s))