Skip to content

Commit

Permalink
fix header on ps listing
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm1 committed May 4, 2023
1 parent d37df2e commit e3e3e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frida_tools/ps.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def _list_applications(self) -> None:
+ "s"
)
self._print(header_format % ("PID", "Name", "Identifier"))
self._print(f"{pid_column_width} {name_column_width * '-'} {identifier_column_width * '-'}")
self._print(f"{pid_column_width * '-'} {name_column_width * '-'} {identifier_column_width * '-'}")

line_format = "%" + str(pid_column_width) + "s %s %-" + str(identifier_column_width) + "s"
name_format = "%-" + str(name_column_width - icon_width) + "s"
Expand Down

0 comments on commit e3e3e9b

Please sign in to comment.