From: Zac Medico Date: Sat, 10 Dec 2011 06:07:07 +0000 (-0800) Subject: config: constructor default portage.const.EPREFIX X-Git-Tag: v2.2.0_alpha80~29 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=11a7448f1d5a0bfb38f8de9d66a8fa8d7118c877;p=portage.git config: constructor default portage.const.EPREFIX --- diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py index 128888137..40a61a43a 100644 --- a/pym/portage/package/ebuild/config.py +++ b/pym/portage/package/ebuild/config.py @@ -143,7 +143,8 @@ class config(object): def __init__(self, clone=None, mycpv=None, config_profile_path=None, config_incrementals=None, config_root=None, target_root=None, - _eprefix=None, local_config=True, env=None, _unmatched_removal=False): + _eprefix=portage.const.EPREFIX, local_config=True, env=None, + _unmatched_removal=False): """ @param clone: If provided, init will use deepcopy to copy by value the instance. @type clone: Instance of config class.