diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-07-12 18:43:16 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-07-12 18:43:16 +0300 |
commit | 38744a1781d5e873d269419c732d88a8e5f7b31b (patch) | |
tree | 2c5be90df49a66af45d5a66b904075a80e076b70 /core/models/wallets.py | |
parent | 5f1b01bea796d4f4e8bef46dcc45980ed2c802d4 (diff) | |
download | troggle-38744a1781d5e873d269419c732d88a8e5f7b31b.tar.gz troggle-38744a1781d5e873d269419c732d88a8e5f7b31b.tar.bz2 troggle-38744a1781d5e873d269419c732d88a8e5f7b31b.zip |
fix non appearing cave ids on wallets
Diffstat (limited to 'core/models/wallets.py')
-rw-r--r-- | core/models/wallets.py | 3 |
1 files changed, 1 insertions, 2 deletions
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: |