Browse Source

android backups: fix missing parameter

master
ThomasV 5 years ago
parent
commit
e64aed2aec
  1. 2
      electrum/gui/kivy/main_window.py

2
electrum/gui/kivy/main_window.py

@ -1342,7 +1342,7 @@ class ElectrumWindow(App, Logger):
return
# note: Clock.schedule_once is a hack so that we get called on a non-daemon thread
# (needed for WalletDB.write)
Clock.schedule_once(lambda dt: self._save_backup())
Clock.schedule_once(lambda dt: self._save_backup(backup_dir))
request_permissions([Permission.WRITE_EXTERNAL_STORAGE], cb)
def _save_backup(self, backup_dir):

Loading…
Cancel
Save