mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-03 17:31:47 +01:00
cures weird bug
This commit is contained in:
parent
3b106a3803
commit
2fa298cae9
@ -173,10 +173,10 @@ def get_complaints(complaints, waldata, svxfiles, files, wallet, wurl):
|
|||||||
svxfile = SurvexFile.objects.get(path=sxpath)
|
svxfile = SurvexFile.objects.get(path=sxpath)
|
||||||
except MultipleObjectsReturned:
|
except MultipleObjectsReturned:
|
||||||
# can happen if connecting a wallet to a survex file.. i think..
|
# can happen if connecting a wallet to a survex file.. i think..
|
||||||
svxfiles = SurvexFile.objects.filter(path=sxpath)
|
QSsvxfiles = SurvexFile.objects.filter(path=sxpath)
|
||||||
for s in svxfiles:
|
for s in QSsvxfiles:
|
||||||
print(s.path, s.cave, s.survexdirectory)
|
print(s.path, s.cave, s.survexdirectory)
|
||||||
svxfile = svxfiles[0] # dont' know how this happened, fix later..
|
svxfile = QSsvxfiles[0] # dont' know how this happened, fix later..
|
||||||
except:
|
except:
|
||||||
file_complaint = f"{wallet} Survex file {sx} exists, but is not registered in the database {sxpath}. How?.."
|
file_complaint = f"{wallet} Survex file {sx} exists, but is not registered in the database {sxpath}. How?.."
|
||||||
complaints.append(file_complaint)
|
complaints.append(file_complaint)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user