Skip to content

Commit

Permalink
Fix complete config file name in log dir
Browse files Browse the repository at this point in the history
  • Loading branch information
xylar committed Nov 19, 2022
1 parent f9aab53 commit cefd4cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpas_analysis/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def run_analysis(config, analyses):
print('Warning: The main run name is quite long and will be '
'truncated in some plots: \n{}\n\n'.format(mainRunName))

configFileName = '{}/config.{}'.format(logsDirectory, mainRunName)
configFileName = '{}/complete.{}.cfg'.format(logsDirectory, mainRunName)

configFile = open(configFileName, 'w')
config.write(configFile)
Expand Down

0 comments on commit cefd4cd

Please sign in to comment.