Commit 4dacfebc authored by Evan Simpson's avatar Evan Simpson

Fixed minor bug in attribute formatting.

parent ba40ed5c
......@@ -307,7 +307,7 @@ class TALInterpreter:
self.col >= align and
self.col + 1 + _len(s) > self.wrap):
self._stream_write("\n" + " "*align)
self.col = self.col + align
self.col = align
else:
s = " " + s
self._stream_write(s)
......
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