From 49ce6fcea64fe0fe968bcf244e8b96b03f0daa36 Mon Sep 17 00:00:00 2001 From: nicogodet Date: Wed, 22 Sep 2021 08:37:48 +0200 Subject: [PATCH] fix variable --- python/plugins/grassprovider/ext/v_rectify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/grassprovider/ext/v_rectify.py b/python/plugins/grassprovider/ext/v_rectify.py index 73ad3368a8a..252a18212fc 100644 --- a/python/plugins/grassprovider/ext/v_rectify.py +++ b/python/plugins/grassprovider/ext/v_rectify.py @@ -46,6 +46,6 @@ def processCommand(alg, parameters, context, feedback): with open(pointsName, "w") as tempPoints: tempPoints.write(inlinePoints) alg.removeParameter('inline_points') - parameters['points'] = tempPoints + parameters['points'] = pointsName alg.processCommand(parameters, context, feedback)