diff --git a/python/clear_h5_output.py b/python/clear_h5_output.py index 8edb1775..9a110cf0 100644 --- a/python/clear_h5_output.py +++ b/python/clear_h5_output.py @@ -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()