mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #4224 from pypeclub/bugfix/files_widget_join_issue
TrayPublisher - join needs list
This commit is contained in:
commit
660ece0142
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ class DropEmpty(QtWidgets.QWidget):
|
|||
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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue