Skip to content

Commit

Permalink
Changes name of env prov file.
Browse files Browse the repository at this point in the history
  • Loading branch information
zshaheen committed Apr 17, 2018
1 parent ed3adc0 commit 1302f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acme_diags/acme_diags_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def provenance(results_dir):
cmd = 'conda list'
p = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, err = p.communicate()
fnm = os.path.join(results_dir, 'prov.txt')
fnm = os.path.join(results_dir, 'env_prov.txt')

with file(fnm, 'w') as f:
f.write(output)
Expand Down

0 comments on commit 1302f92

Please sign in to comment.