summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-01-13 22:21:08 +0000
committerZac Medico <zmedico@gentoo.org>2009-01-13 22:21:08 +0000
commit025b1b33a30cdb89240d02ca17c5ee6a132152c7 (patch)
treebd167a129bd6af29731fb0e2092e669c9ff2e6bb /pym
parente0dfd9cd1ed4c93647c2be20d77d2c3734e24bab (diff)
downloadportage-025b1b33a30cdb89240d02ca17c5ee6a132152c7.tar.gz
portage-025b1b33a30cdb89240d02ca17c5ee6a132152c7.tar.bz2
portage-025b1b33a30cdb89240d02ca17c5ee6a132152c7.zip
Bug #254860 - Add another missing str -> atom conversion inside
_expand_new_virtuals(). svn path=/main/trunk/; revision=12497
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 52dbd6baf..33489ee11 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -6333,7 +6333,7 @@ def _expand_new_virtuals(mysplit, edebug, mydbapi, mysettings, myroot="/",
newsplit.append(x)
continue
if not pkgs and len(mychoices) == 1:
- newsplit.append(x.replace(mykey, mychoices[0]))
+ newsplit.append(portage.dep.Atom(x.replace(mykey, mychoices[0])))
continue
if isblocker:
a = []