Skip to content

Commit

Permalink
Small tweak to the output filenames.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaycedowell committed Dec 9, 2024
1 parent 2255344 commit 1fa9c5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/thors_hammer.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def main(args):
nbyteF = 0

## Open the i-th file
fd = os.open(f"{args.filename}_{i+1}", file_flags, mode=0o664)
fd = os.open(f"{args.filename}.{i+1}", file_flags, mode=0o664)
fh = DummyFileHandle(fd)
udt = DiskWriter(f"generic_{args.packet_size}", fh)

Expand Down

0 comments on commit 1fa9c5d

Please sign in to comment.