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)