Skip to content

Commit c755f04

Browse files
committed
update logging of tf again.
1 parent 2c9bba3 commit c755f04

File tree

1 file changed

+2
-1
lines changed
  • src/ethereum_test_filling_tool

1 file changed

+2
-1
lines changed

src/ethereum_test_filling_tool/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ def fill(self) -> None:
136136
os.makedirs(output_dir, exist_ok=True)
137137
path = os.path.join(output_dir, f"{name}.json")
138138

139-
self.log.debug(f"filling - {path[9:len(path)-5]}")
139+
name = path[9 : len(path) - 5].replace("/", ".")
140+
self.log.debug(f"filling - {name}")
140141
fixture = filler(t8n, b11r, "NoProof")
141142

142143
with open(path, "w", encoding="utf-8") as f:

0 commit comments

Comments
 (0)