Compare commits

...

2 commits

Author SHA1 Message Date
Sakimori 597e901f56
Merge branch 'main' of https://git.yinglet.com/zhetadelta/greenburstAux 2025-09-01 12:01:18 -04:00
Sakimori 4db3ba6629
added extra step to filename stripping 2025-09-01 12:01:15 -04:00

View file

@ -26,7 +26,9 @@ def linesplit(line):
dm = int(dm)
pw, fname = line.split(" s ")
pw = float(pw)
fname = fname.strip().removesuffix("_injected")
fname = fname.strip().removesuffix(".fil").removesuffix("_injected")
if fname.startswith("/"):
fname = fname.split("/")[-1]
return (dm, pw, fname)
def updateDic(lines, dic):