Skip to content

Commit f57d06a

Browse files
committed
Fixed print statement
1 parent a0a2d24 commit f57d06a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

texttospeech/cloud-client/audio_profile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def synthesize_text(text, output, effects_profile_id):
4848
# The response's audio_content is binary.
4949
with open(output, 'wb') as out:
5050
out.write(response.audio_content)
51-
print 'Audio content written to file "%s"' % output
51+
print('Audio content written to file "%s"' % output)
5252

5353
# [END tts_synthesize_text]
5454

0 commit comments

Comments
 (0)