Correct raise issue on Mac OS X 2/2

pull/544/head
nicolargo 2015-04-18 17:48:17 +02:00
parent 04378ec156
commit 3d89e34c21
1 changed files with 2 additions and 2 deletions

View File

@ -542,10 +542,10 @@ class GlancesProcesses(object):
if mandatory_stats:
procstat = self.__get_mandatory_stats(proc, procstat)
if standard_stats:
if procstat is not None and standard_stats:
procstat = self.__get_standard_stats(proc, procstat)
if extended_stats and not self.disable_extended_tag:
if procstat is not None and extended_stats and not self.disable_extended_tag:
procstat = self.__get_extended_stats(proc, procstat)
return procstat