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

Commit

Permalink
Merge pull request #4224 from pypeclub/bugfix/files_widget_join_issue
Browse files Browse the repository at this point in the history
TrayPublisher - join needs list
  • Loading branch information
iLLiCiTiT authored Dec 13, 2022
2 parents 9f15cd1 + b7afb84 commit 660ece0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/tools/attribute_defs/files_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def _update_items_label(self):
extensions_label = " or ".join(allowed_items)
else:
last_item = allowed_items.pop(-1)
new_last_item = " or ".join(last_item, allowed_items.pop(-1))
new_last_item = " or ".join([last_item, allowed_items.pop(-1)])
allowed_items.append(new_last_item)
extensions_label = ", ".join(allowed_items)

Expand Down

0 comments on commit 660ece0

Please sign in to comment.