aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/android/build_incremental_dexmanifest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/android/build_incremental_dexmanifest.py')
-rw-r--r--tools/android/build_incremental_dexmanifest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/android/build_incremental_dexmanifest.py b/tools/android/build_incremental_dexmanifest.py
index 6c372656ec..e912d62a93 100644
--- a/tools/android/build_incremental_dexmanifest.py
+++ b/tools/android/build_incremental_dexmanifest.py
@@ -121,7 +121,7 @@ class DexmanifestBuilder(object):
self.AddDex(input_filename, None, input_filename)
with open(argv[0], "wb") as manifest:
- manifest.write("\n".join(self.manifest_lines))
+ manifest.write(("\n".join(self.manifest_lines)).encode("utf-8"))
def main(argv):