From: Zac Medico Date: Sun, 20 Jul 2008 22:30:04 +0000 (-0000) Subject: Fix broken references to the old elog_modules namespace. X-Git-Tag: v2.2_rc2~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f113babe1f5e062a8afcc1fd36e63fca24b4d6ec;p=portage.git Fix broken references to the old elog_modules namespace. svn path=/main/trunk/; revision=11150 --- 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")