From 4e78cc250adf1c7309dedbb5b89fc663d3370104 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Wed, 4 Jan 2023 23:48:57 -0800 Subject: [PATCH] server: fix python unzip prefix --- server/python/plugin-remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/python/plugin-remote.py b/server/python/plugin-remote.py index 9774e260a..e1154df70 100644 --- a/server/python/plugin-remote.py +++ b/server/python/plugin-remote.py @@ -285,7 +285,7 @@ class PluginRemote: sys.version_info[0])+"."+str(sys.version_info[1]) print('python version:', python_version) - python_prefix = os.path.join(plugin_volume, 'python%s-%s-%s' % (python_version, platform.system(), platform.machine())) + python_prefix = os.path.join(plugin_volume, '%s-%s-%s' % (python_version, platform.system(), platform.machine())) if not os.path.exists(python_prefix): os.makedirs(python_prefix)