Browse Source

Add option "b" in open because binary content

Unknown 8 years ago
parent
commit
a474965acc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tts/voxygen/voxygen.py

+ 1 - 1
tts/voxygen/voxygen.py

@@ -125,7 +125,7 @@ def remove_file(file_path):
 
 
 def write_in_file(file_path, content):
-    with open(file_path, "w") as file_open:
+    with open(file_path, "wb") as file_open:
         file_open.write(content)
         file_open.close()