From 62d5cf7f16e7cc1c34b4df2c9082427aa406a829 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 21 Nov 2014 19:57:24 -0800 Subject: [PATCH] fix error message in geojson plugin --- plugins/input/geojson/geojson_datasource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/input/geojson/geojson_datasource.cpp b/plugins/input/geojson/geojson_datasource.cpp index c2545f9f7..07ddf1b38 100644 --- a/plugins/input/geojson/geojson_datasource.cpp +++ b/plugins/input/geojson/geojson_datasource.cpp @@ -127,7 +127,7 @@ geojson_datasource::geojson_datasource(parameters const& params) mapnik::util::file file(filename_); if (!file.open()) { - throw mapnik::datasource_exception("TopoJSON Plugin: could not open: '" + filename_ + "'"); + throw mapnik::datasource_exception("GeoJSON Plugin: could not open: '" + filename_ + "'"); } std::string file_buffer; file_buffer.resize(file.size());