10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-22 18:57:38 +02:00

Underscores replace spaces for each part of the data files name

This commit is contained in:
Mickaël Véril 2020-08-12 18:13:12 +02:00
parent dec65d5028
commit b114b27911

View File

@ -112,13 +112,13 @@ class dataFileBase(object):
molsoup=TexSoup(self.molecule)
molcomp=list(molsoup.contents)[0]
molfilename=self.molecule if isinstance(molcomp,str) else molcomp.args[0].value
molfilename=molfilename.lower().replace(" ","_")
molfilename=molfilename.lower()
fileNameComp=[molfilename,self.method.name]
if self.method.basis:
fileNameComp.append(self.method.basis)
if suffix:
fileNameComp.append(suffix)
fileName="_".join(fileNameComp)+".dat"
fileName="_".join(fileNameComp).replace(" ","_")+".dat"
file=subpath/fileName
if not file.exists():
with file.open("w") as f: