Commit f44a849a authored by Fred Drake's avatar Fred Drake

do_startTag():  Only add in the length of the tag name once to determine
    alignment column for attributes.
parent ff2fe9ad
......@@ -299,7 +299,7 @@ class TALInterpreter:
namelen = _len(name)
col = self.col + namelen + 1
wrap = self.wrap
align = col + 1 + namelen
align = col + 1
if align >= wrap/2:
align = 4 # Avoid a narrow column far to the right
attrAction = self.dispatch["<attrAction>"]
......
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