Skip to content

Commit

Permalink
[processing] Add missing parameter when reading QgsProcessingParamete…
Browse files Browse the repository at this point in the history
…rField from string
  • Loading branch information
troopa81 authored and nyalldawson committed Oct 28, 2020
1 parent daac819 commit 912dd77
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/processing/core/parameters.py
Expand Up @@ -205,6 +205,8 @@ def getParameterFromString(s, context=''):
params[5] = True if params[5].lower() == 'true' else False
if len(params) > 6:
params[6] = True if params[6].lower() == 'true' else False
if len(params) > 7:
params[7] = True if params[7].lower() == 'true' else False
elif clazz == QgsProcessingParameterFile:
if len(params) > 2:
try:
Expand Down

0 comments on commit 912dd77

Please sign in to comment.