mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-17 14:27:12 +00:00
fix non appearing cave ids on wallets
This commit is contained in:
@@ -249,10 +249,9 @@ class Wallet(models.Model):
|
|||||||
for i in cavelist:
|
for i in cavelist:
|
||||||
if not i:
|
if not i:
|
||||||
continue
|
continue
|
||||||
#print(f"Attempting adding cave '{i}' to wallet {self} ")
|
|
||||||
try:
|
try:
|
||||||
caveobject = get_cave_leniently(i.strip())
|
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:
|
if caveobject:
|
||||||
self.caves.add(caveobject)
|
self.caves.add(caveobject)
|
||||||
except:
|
except:
|
||||||
|
|||||||
Reference in New Issue
Block a user