Skip to content

Commit

Permalink
Fix space in file name bug
Browse files Browse the repository at this point in the history
  • Loading branch information
APN-Pucky committed Oct 6, 2022
1 parent 4b5010b commit 1194557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hepi/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ def slha_scan_rel(l: List[Input], lambdas, rrange: List) -> List[Input]:
for b, v, res in ls:
d.blocks[b][v] = res
setattr(tmp, b + "_" + str(v), res)
newname = newname + "_" + str(b) + "_" + str(v) + "_" + str(
newname = newname + "_" + str(b) + "_" + str(v).replace(" ","") + "_" + str(
res)
#pyslha.write(get_output_dir()+newname, d)
slha_write(newname, d)
Expand Down Expand Up @@ -686,4 +686,4 @@ def scan_pdf(l: List[Input]):
return ret


pdf_scan = scan_pdf
pdf_scan = scan_pdf

0 comments on commit 1194557

Please sign in to comment.