summaryrefslogtreecommitdiffstats
path: root/bin/caller-tree.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2010-05-20 19:06:28 (GMT)
committerSteven Knight <knight@baldmt.com>2010-05-20 19:06:28 (GMT)
commitde6b9527a9cd1a5385c414e984dcc47fcb21a71e (patch)
treeaafaf6e6bf3180dcd94896fec8b8eb2f71d93c03 /bin/caller-tree.py
parent4b3a032823160c0c4560a4644223691ee4f12fc7 (diff)
downloadSCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.zip
SCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.tar.gz
SCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.tar.bz2
vert old-style classes in bin/* scripts to new-style classes.
Diffstat (limited to 'bin/caller-tree.py')
-rw-r--r--bin/caller-tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/caller-tree.py b/bin/caller-tree.py
index 85bb599..03c1616 100644
--- a/bin/caller-tree.py
+++ b/bin/caller-tree.py
@@ -42,7 +42,7 @@
import sys
-class Entry:
+class Entry(object):
def __init__(self, file_line_func):
self.file_line_func = file_line_func
self.called_by = []