diff --git a/bauh/view/qt/components.py b/bauh/view/qt/components.py index dd7b2da2..b0eec544 100644 --- a/bauh/view/qt/components.py +++ b/bauh/view/qt/components.py @@ -319,7 +319,7 @@ class FormQt(QGroupBox): options = QFileDialog.Options() if c.allowed_extensions: - exts = ';;'.join({'{} {} (*.{})'.format(self.i18n['files'].capitalize(), e.upper(), e) for e in c.allowed_extensions}) + exts = ';;'.join({'*.{}'.format(e) for e in c.allowed_extensions}) else: exts = '{}} (*);;'.format(self.i18n['all_files'].capitalize())