From 1783394b6b281d65fedfbf853084a05f878273ae Mon Sep 17 00:00:00 2001 From: Alexander Bruy Date: Wed, 16 May 2018 14:41:46 +0300 Subject: [PATCH] [processing] don't use function annotations as this breaks build on systems with Python < 3.3 (fix #18961) --- python/plugins/processing/algs/gdal/GdalUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/algs/gdal/GdalUtils.py b/python/plugins/processing/algs/gdal/GdalUtils.py index dbb02ee8d5b..8fb21a376fa 100644 --- a/python/plugins/processing/algs/gdal/GdalUtils.py +++ b/python/plugins/processing/algs/gdal/GdalUtils.py @@ -414,7 +414,7 @@ class GdalUtils: return listFile @staticmethod - def gdal_crs_string(crs: QgsCoordinateReferenceSystem) -> str: + def gdal_crs_string(crs): """ Converts a QgsCoordinateReferenceSystem to a string understandable by GDAL