1
0

fix: return type of QFileDialog.getOpenFileName() changed

This commit is contained in:
SomberNight
2017-09-24 04:16:39 +02:00
parent 3181396858
commit f1a4f998d2
6 changed files with 7 additions and 7 deletions

View File

@@ -179,7 +179,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
wallet_folder = os.path.dirname(self.storage.path)
def on_choose():
path = QFileDialog.getOpenFileName(self, "Select your wallet file", wallet_folder)
path, _ = QFileDialog.getOpenFileName(self, "Select your wallet file", wallet_folder)
if path:
self.name_e.setText(path)