Skip to content

Commit

Permalink
Correct #1105 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed Feb 6, 2018
1 parent c817015 commit ed56a89
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions glances/plugins/glances_processlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,9 @@ def __sum_stats(self, key, indice=None, mmm=None):
if key not in p:
# Correct issue #1188
continue
if p[key] is None:
# Correct https://github.com/nicolargo/glances/issues/1105#issuecomment-363553788
continue
if indice is None:
ret += p[key]
else:
Expand Down

0 comments on commit ed56a89

Please sign in to comment.