aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2007-01-25 16:20:19 +0000
committerMarius Mauch <genone@gentoo.org>2007-01-25 16:20:19 +0000
commit5e12dbfeba941ed009229a3d497827bdbc7fb881 (patch)
tree8cdebdc06cfcbdc0fed6c672439274db58679093 /pym/portage/news.py
parentAdding compat symlinks for cache and elog packages (diff)
downloadportage-5e12dbfeba941ed009229a3d497827bdbc7fb881.tar.gz
portage-5e12dbfeba941ed009229a3d497827bdbc7fb881.tar.bz2
portage-5e12dbfeba941ed009229a3d497827bdbc7fb881.zip
Namespace sanitizing, step 2
Rename portage.exec to portage.process to avoid syntax errors svn path=/main/trunk/; revision=5780
Diffstat (limited to 'pym/portage/news.py')
-rw-r--r--pym/portage/news.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pym/portage/news.py b/pym/portage/news.py
index b54261d92..0f8c16da6 100644
--- a/pym/portage/news.py
+++ b/pym/portage/news.py
@@ -3,12 +3,12 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-from portage_const import INCREMENTALS, PROFILE_PATH, NEWS_LIB_PATH
+from portage.const import INCREMENTALS, PROFILE_PATH, NEWS_LIB_PATH
from portage import config, vartree, vardbapi, portdbapi
-from portage_util import ensure_dirs, apply_permissions
-from portage_data import portage_gid
-from portage_locks import lockfile, unlockfile, lockdir, unlockdir
-from portage_exception import FileNotFound
+from portage.util import ensure_dirs, apply_permissions
+from portage.data import portage_gid
+from portage.locks import lockfile, unlockfile, lockdir, unlockdir
+from portage.exception import FileNotFound
import os, re
class NewsManager(object):