summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/models/wallets.py3
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: