Fix wrong error concatenation

This commit is contained in:
Mathias Baumann 2019-03-11 13:28:46 +01:00
parent 4704ef843d
commit dce8469534

View File

@ -98,7 +98,7 @@ public:
auto filterEmpty = boost::adaptors::filtered([](std::string const& _s) { return !_s.empty(); });
std::string errorStr = dev::joinHumanReadable(descs | filterEmpty);
std::string errorStr = dev::joinHumanReadable(descs | filterEmpty, " ");
error(Error::Type::TypeError, _location, errorStr);
}