bug found by python 3.11

This commit is contained in:
Philip Sargent 2022-11-15 23:56:35 +00:00
parent 96281c33e8
commit 0b89979418

View File

@ -67,7 +67,7 @@ def parseCaveQMs(cave, inputFile, ticked=False):
#qmPath = settings.EXPOWEB+inputFile
qmPath = os.path.join(settings.EXPOWEB, inputFile) # why not use the pathlib stuff ?
qmCSVContents = open(qmPath,'rU')
qmCSVContents = open(qmPath,'r')
dialect=csv.Sniffer().sniff(qmCSVContents.read())
qmCSVContents.seek(0,0)
qmReader = csv.reader(qmCSVContents,dialect=dialect)