Commit 3ccf0135 authored by Jim Fulton's avatar Jim Fulton

Fixed bug in handling terminal branches.

parent 6a917295
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
# rights reserved. # rights reserved.
# #
############################################################################ ############################################################################
__rcs_id__='$Id: TreeTag.py,v 1.9 1997/12/01 23:13:57 jim Exp $' __rcs_id__='$Id: TreeTag.py,v 1.10 1997/12/02 00:06:56 jim Exp $'
__version__='$Revision: 1.9 $'[11:-2] __version__='$Revision: 1.10 $'[11:-2]
from DocumentTemplate.DT_Util import * from DocumentTemplate.DT_Util import *
from DocumentTemplate.DT_String import String from DocumentTemplate.DT_String import String
...@@ -190,8 +190,8 @@ def tpRenderTABLE(self, root_url, url, state, substate, data, ...@@ -190,8 +190,8 @@ def tpRenderTABLE(self, root_url, url, state, substate, data,
del substate[-1] del substate[-1]
output('</TD>\n') output('</TD>\n')
else: else:
if level > 3: output('<TD COLSPAN="%s"></TD>' % level) if level > 2: output('<TD COLSPAN="%s"></TD>' % level)
elif level > 1: output('<TD></TD>' * level) elif level > 0: output('<TD></TD>' * level)
output('<TD WIDTH="16"></TD>\n') output('<TD WIDTH="16"></TD>\n')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment