diff --git a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx index eab4bd78591b418023d6a6acfe9188ee6b0b6e24..776b09fa45e894afe8efe0feb2980410de48b3bd 100644 --- a/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx +++ b/Modules/Wrappers/ApplicationEngine/src/otbWrapperApplication.cxx @@ -1453,7 +1453,10 @@ std::string Application::GetParameterAsString(std::string paramKey) oss << this->GetParameterFloat( paramKey ); ret = oss.str(); } - else if( type == ParameterType_StringList ) + else if( type == ParameterType_StringList || + type == ParameterType_InputImageList || + type == ParameterType_InputVectorDataList || + type == ParameterType_InputFilenameList) { std::ostringstream oss; oss << std::setprecision(10);