summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/models/wallets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/wallets.py b/core/models/wallets.py
index dbf3d14..ba997ab 100644
--- a/core/models/wallets.py
+++ b/core/models/wallets.py
@@ -164,7 +164,7 @@ class Wallet(models.Model):
jsonfile = Path(settings.DRAWINGS_DATA, "walletjson") / wyear / wname / "contents.json"
if not Path(jsonfile).is_file():
if wname not in archaic_wallets:
- message = f"! {jsonfile} is not a file {wyear=} {wname=} "
+ message = f"! {jsonfile} is not a file:\n {wyear=} (should be eg. '2023')\n {wname=} (should be eg. '2023#13')\n {self.fpath=}"
print(message)
from troggle.core.models.troggle import DataIssue
DataIssue.objects.update_or_create(parser="wallets", message=message, url=wurl)