From 505eb6475ecd347c833a2fddf23323b65a0b5444 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Tue, 26 Sep 2023 19:44:06 +0300 Subject: pending caves aliases stuff --- core/views/scans.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/views/scans.py') 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 -- cgit v1.2.3