Skip to content

Commit

Permalink
fixed a bug with default publish file type
Browse files Browse the repository at this point in the history
  • Loading branch information
Garvit Verma committed Apr 27, 2020
1 parent dfd07f0 commit 889fb5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hooks/tk-multi-publish2/ingest/color_process_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def validate(self, task_settings, item):
for identifier, template in task_settings.get("publish_file_identifiers").value.iteritems():
resolved_template = self._get_resolved_path(task_settings, item, template)
# these paths should never be the same as publish path
if resolved_template and resolved_template != item.properties.publish_path:
if resolved_template:
resolved_identifiers[resolved_template] = identifier

diff_list = list(set(processed_paths) - set(resolved_identifiers.keys()))
Expand Down

0 comments on commit 889fb5a

Please sign in to comment.