8000 remove .decode() on string. Perhaps code that was never migrated from… · cclauss/python-for-android@254440d · GitHub
[go: up one dir, main page]

Skip to content

Commit 254440d

Browse files
committed
remove .decode() on string. Perhaps code that was never migrated from python 2.7?
1 parent 8f1d40f commit 254440d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/toolchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ def _build_package(self, args, package_type):
10231023
# .../build/bootstrap_builds/sdl2-python3/gradlew
10241024
# if docker on windows, gradle contains CRLF
10251025
output = shprint(
1026-
sh.Command('dos2unix'), gradlew._path.decode('utf8'),
1026+
sh.Command('dos2unix'), gradlew._path,
10271027
_tail=20, _critical=True, _env=env
10281028
)
10291029
if args.build_mode == "debug":

0 commit comments

Comments
 (0)
0