Skip to content

Commit

Permalink
bugfix: messed up flite output path and where I'm looking for cached …
Browse files Browse the repository at this point in the history
…files
  • Loading branch information
Alon committed Feb 26, 2010
1 parent 82d40e4 commit 69fd042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pc/speaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def make_wav(num):
filename = 'wav/%s.wav' % num
if not os.path.exists(filename):
os.system('flite -t %s -o %s.wav' % (num, num))
os.system('flite -t %s -o wav/%s.wav' % (num, num))
assert(os.path.exists(filename))
return filename

Expand Down

0 comments on commit 69fd042

Please sign in to comment.