]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 14 Oct 2005 03:46:48 +0000 (03:46 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 14 Oct 2005 03:46:48 +0000 (03:46 +0000)
examples/adjacencytree/basic_tree.py

index c544ce662f1134032aaa73f71758e6df7e32ddc1..d951a563e9012d156ca0089b71873d4ed40a64c4 100644 (file)
@@ -61,7 +61,7 @@ class TreeNode(object):
 # define the mapper.  we will make "convenient" property
 # names vs. the more verbose names in the table definition
 
-TreeNode.mapper=assignmapper(tables.trees, class_ = TreeNode, properties=dict(
+TreeNode.mapper=assignmapper(tables.trees, class_=TreeNode, properties=dict(
     id=tables.trees.c.node_id,
     name=tables.trees.c.node_name,
     parent_id=tables.trees.c.parent_node_id,