From: Zac Medico Date: Fri, 28 Mar 2008 12:20:03 +0000 (-0000) Subject: add @ to the list of invalid atom chars so sets with prefix aren't X-Git-Tag: v2.1.5~330 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fad32543bf99e70860fc0f28a9086ec0c1617766;p=portage.git add @ to the list of invalid atom chars so sets with prefix aren't considered as atoms accidentally (trunk r9479) svn path=/main/branches/2.1.2/; revision=9560 --- diff --git a/pym/portage_dep.py b/pym/portage_dep.py index afcbfe6fa..3def9412e 100644 --- a/pym/portage_dep.py +++ b/pym/portage_dep.py @@ -369,7 +369,7 @@ def remove_slot(mydep): mydep = mydep[:colon] return mydep -_invalid_atom_chars_regexp = re.compile("[()|?]") +_invalid_atom_chars_regexp = re.compile("[()|?@]") def isvalidatom(atom, allow_blockers=False): """