Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 866197
Collapse All | Expand All

(-)a/lib/portage/getbinpkg.py (-2 / +1 lines)
Lines 529-535 def file_get( Link Here
529
    from portage.util import varexpand
529
    from portage.util import varexpand
530
    from portage.process import spawn
530
    from portage.process import spawn
531
    myfetch = (varexpand(x, mydict=variables) for x in portage.util.shlex_split(fcmd))
531
    myfetch = [varexpand(x, mydict=variables) for x in portage.util.shlex_split(fcmd)]
532
    fd_pipes = {
532
    fd_pipes = {
533
        0: portage._get_stdin().fileno(),
533
        0: portage._get_stdin().fileno(),
534
        1: sys.__stdout__.fileno(),
534
        1: sys.__stdout__.fileno(),
535
-

Return to bug 866197