From 12c1c869ee290d2d386b0458a8ef391e052c1d34 Mon Sep 17 00:00:00 2001 From: radosuav Date: Mon, 15 Jun 2015 11:29:20 +0200 Subject: [PATCH] [processing] Remove space in GDAL warp which causes issues when alg is called from script. --- python/plugins/processing/algs/gdal/warp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/algs/gdal/warp.py b/python/plugins/processing/algs/gdal/warp.py index 2b29e480859..7971384a7ac 100644 --- a/python/plugins/processing/algs/gdal/warp.py +++ b/python/plugins/processing/algs/gdal/warp.py @@ -41,7 +41,7 @@ class warp(GdalAlgorithm): INPUT = 'INPUT' OUTPUT = 'OUTPUT' SOURCE_SRS = 'SOURCE_SRS' - DEST_SRS = 'DEST_SRS ' + DEST_SRS = 'DEST_SRS' METHOD = 'METHOD' METHOD_OPTIONS = ['near', 'bilinear', 'cubic', 'cubicspline', 'lanczos'] TR = 'TR'