Small fix for empty strings
This commit is contained in:
parent
3d7b74025e
commit
e3c0ec22a9
1 changed files with 4 additions and 0 deletions
|
|
@ -644,6 +644,10 @@ def searchCodes(page, pbar, fillList, filename):
|
|||
if len(currentGroup) > 0:
|
||||
finalJAString = ''.join(currentGroup).replace('?', '?')
|
||||
oldjaString = finalJAString
|
||||
|
||||
# Check if Empty
|
||||
if finalJAString == '':
|
||||
continue
|
||||
|
||||
# Check for speakers in String
|
||||
# \\n<Speaker>
|
||||
|
|
|
|||
Loading…
Reference in a new issue