Skip to content
Snippets Groups Projects
Commit 90e1f3e0 authored by Florian Atteneder's avatar Florian Atteneder
Browse files

also skip metadata.txt files when creating h5 archive

parent 6a5c1a3c
No related branches found
No related tags found
1 merge request!7remove is_file check for .h5 file in CoRe_h5 constructor
......@@ -105,6 +105,7 @@ class CoRe_h5(object):
# check this has some chances to be CoRe data
if '.txt' != os.path.splitext(f)[-1]: continue
if f.endswith('metadata.txt'): continue
vlmr = wfile_parse_name(f)
if vlmr == None: continue
var,l,m,r,c = vlmr
......
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