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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sched/schedgraph.py b/tools/sched/schedgraph.py
index 4335574..e592514 100644
--- a/tools/sched/schedgraph.py
+++ b/tools/sched/schedgraph.py
@@ -856,7 +856,7 @@ class EventSource:
return (Y_EVENTSOURCE)
def eventat(self, i):
- if (i >= len(self.events)):
+ if (i >= len(self.events) or i < 0):
return (None)
event = self.events[i]
return (event)
OpenPOWER on IntegriCloud