fix error language when a file cannot be found

This commit is contained in:
Dane Springmeyer 2012-10-16 17:45:33 -07:00
parent 3980eea30a
commit b46c5ddeb1

View file

@ -1663,7 +1663,7 @@ void map_parser::ensure_exists(std::string const& file_path)
{
if (!boost::filesystem::exists(file_path))
{
throw mapnik::config_error("point-file could not be found: '" + file_path + "'");
throw mapnik::config_error("file could not be found: '" + file_path + "'");
}
}
}