diff options
Diffstat (limited to 'core/views/scans.py')
-rw-r--r-- | core/views/scans.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/views/scans.py b/core/views/scans.py index 428f8cf..1556c0f 100644 --- a/core/views/scans.py +++ b/core/views/scans.py @@ -97,13 +97,13 @@ def is_cave(wallet, id): # Historic wallets used just 2 or 3 digits and were all 1623 area. So, just for these wallets, # assume it is 1623-xxx if f"1623-{id}" in Gcavelookup: - print(f" - Should modify wallet {wallet} to us 1623- prefix for cave <{id}>") - Gcavelookup[id] = Gcavelookup[f"1623-{id}"] # restoring ambiguous alias + print(f" - Should modify wallet {wallet} to use 1623- prefix for cave <{id}>") + Gcavelookup[id] = Gcavelookup[f"1623-{id}"] # restoring an ambiguous alias, BAD idea. return True else: print(f" - Wallet {wallet} Failed to find cave object from id <{id}>") if id.lower() != "unknown" and id != "": - print(f" - adding <{id}> to pendingcaves.txt list") + print(f" - adding <{id}> to pendingcaves DataIssues") add_cave_to_pending_list(id, wallet, f"Wallet {wallet} - Could not find id <{id}>") return False |