1
0

skip wallet files with leading dot

This commit is contained in:
Sander van Grieken
2022-07-08 11:10:15 +02:00
parent 0228169852
commit f5933da348

View File

@@ -79,7 +79,7 @@ class QEAvailableWalletListModel(QEWalletListModel):
wallet_folder = os.path.dirname(self.daemon.config.get_wallet_path()) wallet_folder = os.path.dirname(self.daemon.config.get_wallet_path())
with os.scandir(wallet_folder) as it: with os.scandir(wallet_folder) as it:
for i in it: for i in it:
if i.is_file(): if i.is_file() and not i.name.startswith('.'):
available.append(i.path) available.append(i.path)
for path in sorted(available): for path in sorted(available):
wallet = self.daemon.get_wallet(path) wallet = self.daemon.get_wallet(path)