From f01c7cda6ba18fcf2f65333e8560d518830743f5 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 15 Jan 2018 08:41:24 -0500 Subject: [PATCH] [libcalamares] Fix debug output classname --- src/libcalamares/utils/CommandList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcalamares/utils/CommandList.cpp b/src/libcalamares/utils/CommandList.cpp index 5e3d3db95..ae42a13bd 100644 --- a/src/libcalamares/utils/CommandList.cpp +++ b/src/libcalamares/utils/CommandList.cpp @@ -108,7 +108,7 @@ Calamares::JobResult CommandList::run( const QObject* parent ) if ( r.getExitCode() != 0 ) { if ( suppress_result ) - cDebug() << "Error code" << r.getExitCode() << "ignored by ShellProcess configuration."; + cDebug() << "Error code" << r.getExitCode() << "ignored by CommandList configuration."; else return r.explainProcess( parent, processed_cmd, 10 ); }