Skip to content

Commit

Permalink
Handle 'UnknownApplication' nodes (the same way that 'None' nodes wer…
Browse files Browse the repository at this point in the history
…e handled previously)
  • Loading branch information
james-strauss-uwa committed Nov 23, 2021
1 parent 3004e94 commit 6d25d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daliuge-translator/dlg/dropmake/dm_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def convert_construct(lgo):
# try to find a application using several app_keywords
# disregard app_keywords that are not present, or have value "None"
for ak in app_keywords:
if ak in node and node[ak] != "None":
if ak in node and node[ak] != "None" and node[ak] != "UnknownApplication":
has_app = ak
break
if has_app is None:
Expand Down

0 comments on commit 6d25d90

Please sign in to comment.