From 38744a1781d5e873d269419c732d88a8e5f7b31b Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Sat, 12 Jul 2025 18:43:16 +0300 Subject: fix non appearing cave ids on wallets --- core/models/wallets.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core/models/wallets.py') diff --git a/core/models/wallets.py b/core/models/wallets.py index 4474aee..d9a140d 100644 --- a/core/models/wallets.py +++ b/core/models/wallets.py @@ -249,10 +249,9 @@ class Wallet(models.Model): for i in cavelist: if not i: continue - #print(f"Attempting adding cave '{i}' to wallet {self} ") try: caveobject = get_cave_leniently(i.strip()) - print(f"Attempting adding cave '{caveobject}' to wallet {self} ") + # print(f"Attempting adding cave '{caveobject}' to wallet {self} ") if caveobject: self.caves.add(caveobject) except: -- cgit v1.2.3