Skip to content

Commit cdbee35

Browse files
authored
Fixes TypeError: str.join() takes exactly one argument (2 given) in hostpython3/__init__.py", line 69 (kivy#2642)
* Update __init__.py .buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython3/__init__.py", line 69, in get_recipe_env env["PKG_CONFIG_PATH"] = os.pathsep.join( TypeError: str.join() takes exactly one argument (2 given) * according of kivy#2642 (review)
1 parent 715ee8a commit cdbee35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/recipes/hostpython3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def get_recipe_env(self, arch=None):
6767
openssl_prereq = OpenSSLPrerequisite()
6868
if env.get("PKG_CONFIG_PATH", ""):
6969
env["PKG_CONFIG_PATH"] = os.pathsep.join(
70-
openssl_prereq.pkg_config_location, env["PKG_CONFIG_PATH"]
70+
[openssl_prereq.pkg_config_location, env["PKG_CONFIG_PATH"]]
7171
)
7272
else:
7373
env["PKG_CONFIG_PATH"] = openssl_prereq.pkg_config_location

0 commit comments

Comments
 (0)