mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 22:18:01 +00:00
Fix a small bug in paths
This commit is contained in:
parent
a1141408ea
commit
169a5e5bd7
1 changed files with 2 additions and 2 deletions
|
@ -305,9 +305,9 @@ class Paths:
|
||||||
files = [f for f in files if "_inv" not in f] # Remove inv. ICs
|
files = [f for f in files if "_inv" not in f] # Remove inv. ICs
|
||||||
files = [f for f in files if "_new" not in f] # Remove _new
|
files = [f for f in files if "_new" not in f] # Remove _new
|
||||||
files = [f for f in files if "OLD" not in f] # Remove _old
|
files = [f for f in files if "OLD" not in f] # Remove _old
|
||||||
ids = [int(f.split("_")[-1]) for f in files]
|
files = [int(f.split("_")[-1]) for f in files]
|
||||||
try:
|
try:
|
||||||
ids.remove(5511)
|
files.remove(5511)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
elif simname == "quijote" or simname == "quijote_full":
|
elif simname == "quijote" or simname == "quijote_full":
|
||||||
|
|
Loading…
Reference in a new issue