bug [ 1072853 ] thisid not intialized in pindent.py script

This commit is contained in:
Georg Brandl 2005-06-26 20:20:48 +00:00
parent 58bd19095a
commit 7e7688c2ec

View file

@ -238,6 +238,7 @@ class PythonIndenter:
self.indentsize = 1 self.indentsize = 1
stack = [] stack = []
todo = [] todo = []
thisid = ''
current, firstkw, lastkw, topid = 0, '', '', '' current, firstkw, lastkw, topid = 0, '', '', ''
while 1: while 1:
line = self.getline() line = self.getline()