summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pybootchartgui')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/draw.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index 707e7fe427..ce3af74e2b 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -703,7 +703,7 @@ def draw_processes_recursively(ctx, proc, proc_tree, y, proc_h, rect, clip) :
703 cmdString = proc.cmd 703 cmdString = proc.cmd
704 else: 704 else:
705 cmdString = '' 705 cmdString = ''
706 if (OPTIONS.show_pid or OPTIONS.show_all) and ipid is not 0: 706 if (OPTIONS.show_pid or OPTIONS.show_all) and ipid != 0:
707 cmdString = cmdString + " [" + str(ipid // 1000) + "]" 707 cmdString = cmdString + " [" + str(ipid // 1000) + "]"
708 if OPTIONS.show_all: 708 if OPTIONS.show_all:
709 if proc.args: 709 if proc.args:
@@ -801,7 +801,7 @@ class CumlSample:
801 if self.color is None: 801 if self.color is None:
802 i = self.next() % HSV_MAX_MOD 802 i = self.next() % HSV_MAX_MOD
803 h = 0.0 803 h = 0.0
804 if i is not 0: 804 if i != 0:
805 h = (1.0 * i) / HSV_MAX_MOD 805 h = (1.0 * i) / HSV_MAX_MOD
806 s = 0.5 806 s = 0.5
807 v = 1.0 807 v = 1.0