diff --git a/src/exceptions.cpp b/src/exceptions.cpp index 381b6d8..7c3da1a 100644 --- a/src/exceptions.cpp +++ b/src/exceptions.cpp @@ -42,7 +42,7 @@ const char *CURLException::what() const noexcept + " - " + _message}; if (!_error_buffer.empty()) { - error_string.append("[" + _error_buffer + "]"); + error_string.append(" [" + _error_buffer + "]"); } return error_string.c_str(); }