Removing old debugging statement

This commit is contained in:
Strahinja Val Markovic 2012-08-11 21:19:06 -07:00
parent 67c69197d8
commit d793919969

View File

@ -141,7 +141,6 @@ def PreviousIdentifier():
while end_column > 0 and not utils.IsIdentifierChar(
line[ end_column - 1 ] ):
end_column -= 1
print end_column, line
start_column = end_column
while start_column > 0 and utils.IsIdentifierChar( line[ start_column - 1 ] ):