Update word_utils.py

This commit is contained in:
chrys87 2016-07-20 15:25:28 +02:00 committed by GitHub
parent 885866fa47
commit 5033a56eac

View File

@ -1,6 +1,8 @@
#!/bin/python
def getCurrentWord(x,y, currText):
if currText == '':
return -1, -1, ''
wordFound = False
currWord = ''
currLine = wrappedLines[y].replace("\t"," ")