From 4a62699472b7663622c6779531de7bd3532cc2cd Mon Sep 17 00:00:00 2001 From: "arnaud.morvan@camptocamp.com" Date: Sun, 6 Nov 2016 13:05:32 +0100 Subject: [PATCH] [processing] Fix TableWidgetWrapper in batch dialog --- python/plugins/processing/gui/wrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/gui/wrappers.py b/python/plugins/processing/gui/wrappers.py index 393bde645e8..516d536a89b 100644 --- a/python/plugins/processing/gui/wrappers.py +++ b/python/plugins/processing/gui/wrappers.py @@ -741,7 +741,7 @@ class TableWidgetWrapper(WidgetWrapper): except: return self.widget.getValue() elif self.dialogType == DIALOG_BATCH: - return self.widget.getText() + return self.widget.value() else: def validator(v): return bool(v) or self.param.optional