Skip to content

Commit 17e16d4

Browse files
authored
Merge pull request #3217 from T-Dynamos/minor-fix
fix plat-name
2 parents 28372fb + 5be7531 commit 17e16d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1222,7 +1222,7 @@ def get_recipe_env(self, arch, **kwargs):
12221222
build_opts = join(build_dir, "build-opts.cfg")
12231223

12241224
with open(build_opts, "w") as file:
1225-
file.write("[bdist_wheel]\nplat-name={}".format(
1225+
file.write("[bdist_wheel]\nplat_name={}".format(
12261226
self.get_wheel_platform_tag(arch)
12271227
))
12281228
file.close()

0 commit comments

Comments
 (0)