summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/elog/mod_custom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/elog/mod_custom.py b/pym/portage/elog/mod_custom.py
index 09d981a0c..0bcd42a95 100644
--- a/pym/portage/elog/mod_custom.py
+++ b/pym/portage/elog/mod_custom.py
@@ -3,10 +3,10 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-import portage.elog_modules.mod_save, portage.process, portage.exception
+import portage.elog.mod_save, portage.process, portage.exception
def process(mysettings, key, logentries, fulltext):
- elogfilename = portage.elog_modules.mod_save.process(mysettings, key, logentries, fulltext)
+ elogfilename = portage.elog.mod_save.process(mysettings, key, logentries, fulltext)
if not mysettings.get("PORTAGE_ELOG_COMMAND"):
raise portage.exception.MissingParameter("!!! Custom logging requested but PORTAGE_ELOG_COMMAND is not defined")