Browse Source

Merge remote-tracking branch 'origin/pr/202'

* origin/pr/202:
  Fixed change in QFileDialog behavior in PyQt5
Marek Marczykowski-Górecki 4 years ago
parent
commit
12481fd561
1 changed files with 1 additions and 1 deletions
  1. 1 1
      qubesmanager/backup_utils.py

+ 1 - 1
qubesmanager/backup_utils.py

@@ -81,7 +81,7 @@ def select_path_button_clicked(dialog, select_file=False, read_only=False):
                 file_dialog_function = file_dialog.getOpenFileName
             else:
                 file_dialog_function = file_dialog.getExistingDirectory
-            new_path = file_dialog_function(
+            new_path, _ = file_dialog_function(
                 dialog,
                 dialog.tr("Select backup location."),
                 backup_location if backup_location else '/')