Skip to content

Commit

Permalink
Fix var usage
Browse files Browse the repository at this point in the history
  • Loading branch information
cognifloyd committed Aug 4, 2021
1 parent 61f10a6 commit a129c8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion st2common/st2common/util/output_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def mask_secret_output(ac_ex, output_value):
return output_value

# malformed schema
if not isinstance(schema, Mapping):
if not isinstance(output_schema, Mapping):
return output_value

for key, spec in output_schema.items():
Expand Down

0 comments on commit a129c8d

Please sign in to comment.