Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
fixed syntax error in validate_custom_ftrack_attributes plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Feb 4, 2021
1 parent 8b387de commit 8d80324
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def process(self, instance):
"Missing FTrack Task entity in context")

host = pyblish.api.current_host()
to_check = self.ftrack_custom_attributes.get(host, {}))
to_check = self.ftrack_custom_attributes.get(host, {})

if not to_check:
self.log.warning("ftrack_attributes preset not found")
Expand Down

0 comments on commit 8d80324

Please sign in to comment.