From: Zac Medico Date: Sun, 15 Jun 2008 04:51:12 +0000 (-0000) Subject: Fix config._accept_chost_re so it's only an instance variable. X-Git-Tag: v2.1.5.6~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a9e8b8417a7eb30d21c51fb830ab8748b8df1a0c;p=portage.git Fix config._accept_chost_re so it's only an instance variable. (trunk r10656) svn path=/main/branches/2.1.2/; revision=10657 --- diff --git a/pym/portage.py b/pym/portage.py index 8e1a620c6..fda8a1ec4 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1159,7 +1159,6 @@ class config: ] _environ_filter = frozenset(_environ_filter) - _accept_chost_re = None def __init__(self, clone=None, mycpv=None, config_profile_path=None, config_incrementals=None, config_root=None, target_root=None, @@ -1197,6 +1196,7 @@ class config: self.puse = [] self.modifiedkeys = [] self.uvlist = [] + self._accept_chost_re = None self.virtuals = {} self.virts_p = {}