Skip to content

Commit d33e338

Browse files
arnaud-morvanvolaya
authored andcommittedOct 5, 2016
Fix StringWidgetWrapper.value method
1 parent c010a03 commit d33e338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/wrappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ def value(self):
657657
text = self.widget.getValue()
658658
return text
659659
if self.dialogType == DIALOG_BATCH:
660-
text = self.widget.text()
660+
return self.widget.text()
661661
else:
662662
if self.param.multiline:
663663
value = self.widget.getValue()

0 commit comments

Comments
 (0)
Please sign in to comment.