Fix error message formatting.
authorCarl Hetherington <cth@carlh.net>
Wed, 9 Oct 2013 13:12:35 +0000 (14:12 +0100)
committerCarl Hetherington <cth@carlh.net>
Wed, 9 Oct 2013 13:12:35 +0000 (14:12 +0100)
src/exceptions.h

index 3e27f8f7493646243cbfb55a807f938dfa42f267..0c43c70a5f6d3afe753fdde6b281097c72607f87 100644 (file)
@@ -34,7 +34,7 @@ class FileError : public std::exception
 {
 public:
        FileError (std::string const & message, boost::filesystem::path filename)
-               : _message (message + "(" + filename.string() + ")")
+               : _message (message + " (" + filename.string() + ")")
                , _filename (filename)
        {}