summaryrefslogtreecommitdiff
path: root/tree.py
diff options
context:
space:
mode:
authorSylvain <syt@logilab.fr>2007-11-28 14:56:59 +0100
committerSylvain <syt@logilab.fr>2007-11-28 14:56:59 +0100
commita1985c17caa606440240d09fdb1a3a06e8dfcc44 (patch)
tree7fa014aed656ae35431b44b885d15aa242be790b /tree.py
parentbb675d28e04a76ccc8c2e0cd49047074f2d807ab (diff)
downloadlogilab-common-a1985c17caa606440240d09fdb1a3a06e8dfcc44.tar.gz
inherit from object
Diffstat (limited to 'tree.py')
-rw-r--r--tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tree.py b/tree.py
index fa168ef..4fcb6c6 100644
--- a/tree.py
+++ b/tree.py
@@ -34,7 +34,7 @@ EX_NODE_NOT_FOUND = "No such node as '%s'"
# Base node ###################################################################
-class Node :
+class Node(object):
"""a basic tree node, caracterised by an id"""
def __init__(self, nid=None) :