Skip to content
Snippets Groups Projects
Commit bc663bce authored by tlbl's avatar tlbl
Browse files

changing extension of saved spreadsheets

parent ac25e715
No related branches found
No related tags found
No related merge requests found
...@@ -234,7 +234,7 @@ class GenerateDLCCases(GeneralDLC): ...@@ -234,7 +234,7 @@ class GenerateDLCCases(GeneralDLC):
df = pd.DataFrame(dlc) df = pd.DataFrame(dlc)
if not os.path.exists(folder): if not os.path.exists(folder):
os.makedirs(folder) os.makedirs(folder)
df.to_excel(os.path.join(folder, sheet.name+'.xls'), index=False) df.to_excel(os.path.join(folder, sheet.name+'.xlsx'), index=False)
class RunTest(): class RunTest():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment