mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-24 09:44:48 +03:00
chg: processlist - handle tabs in args
This commit is contained in:
parent
6e77196404
commit
59cb557941
@ -411,6 +411,7 @@ class Plugin(GlancesPlugin):
|
||||
# Manage end of line in arguments (see #1692)
|
||||
arguments = arguments.replace('\r\n', ' ')
|
||||
arguments = arguments.replace('\n', ' ')
|
||||
arguments = arguments.replace('\t', ' ')
|
||||
if os.path.isdir(path) and not args.process_short_name:
|
||||
msg = self.layout_stat['command'].format(path) + os.sep
|
||||
ret.append(self.curse_add_line(msg, splittable=True))
|
||||
|
Loading…
Reference in New Issue
Block a user