Make sure chrootCall with args list actually passes the args as list.

This commit is contained in:
Teo Mrnjavac 2014-07-30 12:43:15 +02:00
parent 122a6036d5
commit e7e57689d8
3 changed files with 21 additions and 4 deletions

View file

@ -66,7 +66,8 @@ chroot_call( const boost::python::list& args,
list.append( QString::fromStdString(
boost::python::extract< std::string >( args[ i ] ) ) );
}
return CalamaresUtils::chrootCall( list.join( ' ' ),
return CalamaresUtils::chrootCall( list,
QString::fromStdString( stdin ),
timeout );
}