fixed bug in cli that didn't handle txt files (from google)

This commit is contained in:
2019-03-08 21:44:55 -05:00
parent 8f63320be4
commit 0990f76e19
8 changed files with 20 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ def vo(self):
if word['always_capitalized']:
word_word = word['word'].title()
else:
word_word['word']
word_word = word['word']
transcript.append({
'start': word['start'],