diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-09-26 19:44:06 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-09-26 19:44:06 +0300 |
commit | 505eb6475ecd347c833a2fddf23323b65a0b5444 (patch) | |
tree | 250e6b3b410feaeeed49aa7e2527855ebb5f40a3 /core/views/scans.py | |
parent | 51dbf5e9e6ec3da29bbf6a0b5910f55e6d163cee (diff) | |
download | troggle-505eb6475ecd347c833a2fddf23323b65a0b5444.tar.gz troggle-505eb6475ecd347c833a2fddf23323b65a0b5444.tar.bz2 troggle-505eb6475ecd347c833a2fddf23323b65a0b5444.zip |
pending caves aliases stuff
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 |