diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/views/scans.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views/scans.py b/core/views/scans.py index 50e7209..5269d0b 100644 --- a/core/views/scans.py +++ b/core/views/scans.py @@ -64,7 +64,7 @@ def caveifywallet(w): '''Gets the cave from the list of survex files, only selects one of them though. Only used for display. ''' - print(f' - Caveify {w=}') + #print(f' - Caveify {w=}') blocknames = [] blocks = SurvexBlock.objects.filter(scanswallet = w) for b in blocks: @@ -208,7 +208,7 @@ def cavewallets(request, caveid): wallets.add(z) else: wurl = f"/scanupload/{z.walletname.replace('#',':')}" - print(f' - Unrecognised cave name \'{zcaveid}\' in {z.walletname} (out of {len(Gcavelookup):,} cave names') + print(f' - Unrecognised cave name \'{zcaveid}\' in {z.walletname} (out of {len(Gcavelookup):,} cave names and aliases)') message = f" ! In {z.walletname} there is an unrecognised cave name '{zcaveid}' (out of {len(Gcavelookup):,} cave names" DataIssue.objects.update_or_create(parser='scans', message=message, url=wurl) |