diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-09-27 21:43:35 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-09-27 21:43:35 +0300 |
commit | 421b47c137acfa1a54730ef48557525aadea0992 (patch) | |
tree | db3be7efd1e83a0f4aa026938a37834eef50049b /core/views/scans.py | |
parent | 0d5297f08c9a629176bbeb9839e8cc9bf80ef3b2 (diff) | |
download | troggle-421b47c137acfa1a54730ef48557525aadea0992.tar.gz troggle-421b47c137acfa1a54730ef48557525aadea0992.tar.bz2 troggle-421b47c137acfa1a54730ef48557525aadea0992.zip |
bugfix
Diffstat (limited to 'core/views/scans.py')
-rw-r--r-- | core/views/scans.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/scans.py b/core/views/scans.py index 1556c0f..8e334bf 100644 --- a/core/views/scans.py +++ b/core/views/scans.py @@ -298,7 +298,7 @@ def cavewallets(request, caveid): message = f" ! In {z.walletname} there is an unrecognised cave name '{cleanid}', adding to pending list." print(message) DataIssue.objects.update_or_create(parser="scans", message=message, url=wurl) - add_cave_to_pending_list(cleanid, f"an unrecognised cave name in {z.walletname}") + add_cave_to_pending_list(cleanid, z, f"an unrecognised cave name in {z.walletname}") manywallets = list(set(wallets)) for w in manywallets: |