aboutsummaryrefslogtreecommitdiff
path: root/timechart/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'timechart/model.py')
-rw-r--r--timechart/model.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/timechart/model.py b/timechart/model.py
index 99ee223..7d073cb 100644
--- a/timechart/model.py
+++ b/timechart/model.py
@@ -451,7 +451,7 @@ class tcProject(HasTraits):
self.linenumbers.append(event.linenumber)
self.timestamps.append(event.timestamp)
if event.event=='function':
- callback = "do_event_"+event.callee
+ callback = "do_function_"+event.callee
if self.plugin_methods.has_key(callback):
try:
self.plugin_methods[callback](self,event)