Skip to content

Commit

Permalink
Update pyperf/_command.py
Browse files Browse the repository at this point in the history
Co-authored-by: Victor Stinner <[email protected]>
  • Loading branch information
mdboom and vstinner authored Sep 6, 2024
1 parent bb24371 commit ac49b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyperf/_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def parse_subprocess_data(output):
rss = int(lines[1])
metadata = json.loads(lines[2])
except ValueError:
raise ValueError("failed to parse script output: %r" % output)
raise ValueError("failed to parse worker output: %r" % output)

return timing, rss, metadata

Expand Down

0 comments on commit ac49b20

Please sign in to comment.