diff --git a/bauh/view/qt/components.py b/bauh/view/qt/components.py index ecfab6e3..5b0177e3 100644 --- a/bauh/view/qt/components.py +++ b/bauh/view/qt/components.py @@ -864,7 +864,7 @@ class FormQt(QGroupBox): if '*' in c.allowed_extensions: sorted_exts.append('*') - exts = ';;'.join({f'*.{e}' for e in sorted_exts}) + exts = ';;'.join((f'*.{e}' for e in sorted_exts)) else: exts = '{} (*);;'.format(self.i18n['all_files'].capitalize())