From 2fa298cae9db9fb5bfc0884c3e2c360c33860a72 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Sat, 15 Oct 2022 17:26:09 +0300 Subject: cures weird bug --- core/views/uploads.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/views/uploads.py') diff --git a/core/views/uploads.py b/core/views/uploads.py index 7c5406f..356158e 100644 --- a/core/views/uploads.py +++ b/core/views/uploads.py @@ -173,10 +173,10 @@ def get_complaints(complaints, waldata, svxfiles, files, wallet, wurl): svxfile = SurvexFile.objects.get(path=sxpath) except MultipleObjectsReturned: # can happen if connecting a wallet to a survex file.. i think.. - svxfiles = SurvexFile.objects.filter(path=sxpath) - for s in svxfiles: + QSsvxfiles = SurvexFile.objects.filter(path=sxpath) + for s in QSsvxfiles: 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: file_complaint = f"{wallet} Survex file {sx} exists, but is not registered in the database {sxpath}. How?.." complaints.append(file_complaint) -- cgit v1.2.3