summaryrefslogtreecommitdiffstats
path: root/tools/sched/schedgraph.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sched/schedgraph.py')
-rw-r--r--tools/sched/schedgraph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/sched/schedgraph.py b/tools/sched/schedgraph.py
index f0552ca..0723dc3 100644
--- a/tools/sched/schedgraph.py
+++ b/tools/sched/schedgraph.py
@@ -461,7 +461,7 @@ class SourceStats(Toplevel):
if (event.type == "pad"):
continue
duration = event.duration
- if (eventtypes.has_key(event.name)):
+ if (event.name in eventtypes):
(c, d) = eventtypes[event.name]
c += 1
d += duration
@@ -1069,7 +1069,7 @@ class KTRFile:
def makeid(self, group, id, type):
tag = group + id
- if (self.taghash.has_key(tag)):
+ if (tag in self.taghash):
return self.taghash[tag]
if (type == "counter"):
source = Counter(group, id)
OpenPOWER on IntegriCloud