This commit is contained in:
ThomasV 2017-03-04 08:41:45 +01:00
parent b2d66b2a6f
commit 98353c286a
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class WalletStorage(PrintError):
self.lock = threading.RLock()
self.data = {}
self.path = path
self.file_exists = os.path.exists(self.path)
self.file_exists = self.path and os.path.exists(self.path)
self.modified = False
self.pubkey = None