mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-26 02:31:36 +03:00
Error when process list is displayed in Programs mode #2209
This commit is contained in:
parent
6923d49aa7
commit
416bbed02e
@ -36,7 +36,7 @@ def processes_to_programs(processes):
|
||||
'name': p['name'],
|
||||
'cmdline': [p['name']],
|
||||
'pid': '_',
|
||||
'username': p['username'],
|
||||
'username': p['username'] if 'username' in p else '_',
|
||||
'nice': p['nice'],
|
||||
'status': p['status'],
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user