projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8200142
)
Bug #254860 - Add another missing str -> atom conversion inside
author
Zac Medico
<zmedico@gentoo.org>
Wed, 14 Jan 2009 03:57:29 +0000
(
03:57
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Wed, 14 Jan 2009 03:57:29 +0000
(
03:57
-0000)
_expand_new_virtuals(). (trunk r12497)
svn path=/main/branches/2.1.6/; revision=12507
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index 2e33b330c4933a691476a8bfea3cf572e00e3bdc..a64bbab610dff19b275dc613f656ac96e90ee81e 100644
(file)
--- a/
pym/portage/__init__.py
+++ b/
pym/portage/__init__.py
@@
-6320,7
+6320,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 = []