summaryrefslogtreecommitdiff
blob: aa8da0aa064f5c9b4a1e948231f542fad4b07a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# portage_compat_namespace.py -- provide compability layer with new namespace
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

""" 
Special edition of portage_compat_namespace.py as for this module we can't translate
name automatically as "import portage.exec" is a SyntaxError.
"""

import sys, warnings

import portage.process
warnings.warn("DEPRECATION NOTICE: The portage_exec module was replaced by portage.process")
sys.modules["portage_exec"] = portage.process