aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2007-01-25 17:07:32 +0000
committerMarius Mauch <genone@gentoo.org>2007-01-25 17:07:32 +0000
commit064104225b74e6db799c65a30dba1bd4b6b68132 (patch)
treeb54c084734e73a55cd4f0a70d185c599101d434a /pym/portage/data.py
parentNamespace sanitizing, step 2b (diff)
downloadportage-064104225b74e6db799c65a30dba1bd4b6b68132.tar.gz
portage-064104225b74e6db799c65a30dba1bd4b6b68132.tar.bz2
portage-064104225b74e6db799c65a30dba1bd4b6b68132.zip
Namespace sanitizing, step 3
svn path=/main/trunk/; revision=5782
Diffstat (limited to 'pym/portage/data.py')
-rw-r--r--pym/portage/data.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/portage/data.py b/pym/portage/data.py
index 1ed53419c..10a480cd1 100644
--- a/pym/portage/data.py
+++ b/pym/portage/data.py
@@ -1,4 +1,4 @@
-# portage.data.py -- Calculated/Discovered Data Values
+# data.py -- Calculated/Discovered Data Values
# Copyright 1998-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -8,8 +8,8 @@ if not hasattr(__builtins__, "set"):
import os,pwd,grp
from portage.util import writemsg
-from output import green,red
-from output import create_color_func
+from portage.output import green,red
+from portage.output import create_color_func
bad = create_color_func("BAD")
ostype=os.uname()[0]