writer.py Fix stringlen bug with zero length string.

pull/45/head
Peter Hinch 2021-09-19 11:59:47 +01:00
rodzic c90a904ae1
commit dcc97abc3f
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -150,6 +150,8 @@ class Writer():
self._printline(rstr, invert) # Recurse
def stringlen(self, string, oh=False):
if not len(string):
return 0
sc = self._getstate().text_col # Start column
wd = self.screenwidth
l = 0