From dffd0a6e9edb4e63aed271ba56a571c57135366f Mon Sep 17 00:00:00 2001 From: Dane Springmeyer <dane@dbsgeo.com> Date: Fri, 22 Nov 2013 15:49:39 -0800 Subject: [PATCH] add has_svg_renderer status to python bindings --- bindings/python/mapnik_python.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/python/mapnik_python.cpp b/bindings/python/mapnik_python.cpp index ce6fdf149..f3be6d05c 100644 --- a/bindings/python/mapnik_python.cpp +++ b/bindings/python/mapnik_python.cpp @@ -860,6 +860,7 @@ BOOST_PYTHON_MODULE(_mapnik) def("has_png", &has_png, "Get png read/write support status"); def("has_tiff", &has_tiff, "Get tiff read/write support status"); def("has_webp", &has_webp, "Get webp read/write support status"); + def("has_svg_renderer", &has_svg_renderer, "Get svg_renderer status"); def("has_grid_renderer", &has_grid_renderer, "Get grid_renderer status"); def("has_cairo", &has_cairo, "Get cairo library status"); def("has_pycairo", &has_pycairo, "Get pycairo module status");