diff --git a/InvenTree/plugin/serializers.py b/InvenTree/plugin/serializers.py index 87b0bd7ae8..6e19eb2559 100644 --- a/InvenTree/plugin/serializers.py +++ b/InvenTree/plugin/serializers.py @@ -103,7 +103,7 @@ class PluginConfigInstallSerializer(serializers.Serializer): # use pypi command.append(packagename) - ret = {'command': command} + ret = {'command': ' '.join(command)} # execute pypi try: result = subprocess.check_output(command, cwd=os.path.dirname(settings.BASE_DIR))