Browse Source

Fixed change in QFileDialog behavior in PyQt5

Return type of QFileDialog changed between PyQt4 and PyQt5.

fixes QubesOS/qubes-issues#5353
Marta Marczykowska-Górecka 4 years ago
parent
commit
442066d96c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      qubesmanager/backup_utils.py

+ 1 - 1
qubesmanager/backup_utils.py

@@ -82,7 +82,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 '/')