diff options
Diffstat (limited to 'parsers/scans.py')
-rw-r--r-- | parsers/scans.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parsers/scans.py b/parsers/scans.py index 3d81f13..fdded82 100644 --- a/parsers/scans.py +++ b/parsers/scans.py @@ -105,7 +105,7 @@ def load_all_scans(): # do the year folders if re.match(r"\d\d\d\d$", walletname): print(f"{walletname}", end=' ') - for walletname, fpath, fisdir in GetListDir(ff): + for walletname, fpath, fisdir in GetListDir(fpath): if fisdir: wallet = Wallet(fpath=fpath, walletname=walletname) # this is where we should load the contents.json for people so we can report on them later @@ -116,7 +116,7 @@ def load_all_scans(): # what is this? elif walletname != "thumbs": - print(f'\n - Wallet {f} - {ff}') + print(f'\n - Wallet {walletname} - {fpath}') wallet = Wallet(fpath=fpath, walletname=walletname) wallet.save() LoadListScansFile(wallet) |