Skip to content

Commit

Permalink
[processing] Fix error reporting from batch dialog
Browse files Browse the repository at this point in the history
Fixes #39197
  • Loading branch information
nyalldawson committed Oct 6, 2020
1 parent ddae53b commit 5243a85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchAlgorithmDialog.py
Expand Up @@ -57,7 +57,7 @@ def __init__(self, steps, feedback):
super().__init__(steps, feedback)
self.errors = []

def reportError(self, error: str, fatalError: bool):
def reportError(self, error: str, fatalError: bool = False):
self.errors.append(error)
super().reportError(error, fatalError)

Expand Down

0 comments on commit 5243a85

Please sign in to comment.