Fix subgroup name in clear_h5_output.py

This commit is contained in:
Priyanka Seth 2015-03-12 11:00:17 +01:00
parent d30abdd20e
commit 460219fb16
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ and to restore it to the original post-converter state.
filename = sys.argv[1]
A = h5py.File(filename)
for group in ['dft_output','user_data']:
for group in ['dmft_output','user_data']:
if group in A: del(A[group])
A.close()