mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-03-15 06:40:24 +01:00
fix: sorting in sfcf append mode fixed.
This commit is contained in:
parent
41fec09816
commit
a9035bab81
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ def read_sfcf(path, prefix, name, quarks='.*', corr_type='bi', noffset=0, wf=0,
|
||||||
for exc in ls:
|
for exc in ls:
|
||||||
if not fnmatch.fnmatch(exc, prefix + '*.' + name):
|
if not fnmatch.fnmatch(exc, prefix + '*.' + name):
|
||||||
ls = list(set(ls) - set([exc]))
|
ls = list(set(ls) - set([exc]))
|
||||||
ls.sort(key=lambda x: int(re.findall(r'\d+', x)[-1]))
|
ls = sort_names(ls)
|
||||||
pattern = _make_pattern(version, name, noffset, wf, wf2, b2b, quarks)
|
pattern = _make_pattern(version, name, noffset, wf, wf2, b2b, quarks)
|
||||||
deltas = []
|
deltas = []
|
||||||
for rep, file in enumerate(ls):
|
for rep, file in enumerate(ls):
|
||||||
|
|
Loading…
Add table
Reference in a new issue