Skip to content

Commit

Permalink
abstract is not required to load process
Browse files Browse the repository at this point in the history
  • Loading branch information
landam committed Jan 9, 2024
1 parent 1931a0f commit 480abd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wps_dialog.py
Expand Up @@ -287,7 +287,7 @@ def setOutputItems(self, data):

def onLoadProcessResponse(self, response):
if response.status == 200:
if response.data.abstract is not None:
if response.data.identifier is not None:
self.setInputItems(response.data)
self.setOutputItems(response.data)
self.appendLogMessage(self.tr("Process {} loaded".format(self.process_identifier)))
Expand Down

0 comments on commit 480abd8

Please sign in to comment.