[libcalamares] Give Python jobs a warning()

- Add libcalamares.utils.warning() alongside debug() for
   Python modules to output warnings.
This commit is contained in:
Adriaan de Groot 2018-02-20 04:26:59 -05:00
parent dbbec4f76d
commit 84d599625f
3 changed files with 13 additions and 0 deletions

View file

@ -66,6 +66,7 @@ boost::python::object gettext_path();
boost::python::list gettext_languages();
void debug( const std::string& s );
void warning( const std::string& s );
class PythonJobInterface
{