From e6db8b85e8fcf7e727f8f8ea254561af7a95c1a6 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Sat, 19 Jun 2021 19:09:09 +1000 Subject: [PATCH] remove spaces in Python Embeddable folder name --- Flow.Launcher.Core/Plugin/PluginsLoader.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Core/Plugin/PluginsLoader.cs b/Flow.Launcher.Core/Plugin/PluginsLoader.cs index e5f44e4c4..1b78c68ae 100644 --- a/Flow.Launcher.Core/Plugin/PluginsLoader.cs +++ b/Flow.Launcher.Core/Plugin/PluginsLoader.cs @@ -154,7 +154,7 @@ namespace Flow.Launcher.Core.Plugin } else { - var installedPythonDirectory = Path.Combine(DataLocation.DataDirectory(), "Python Embeddable"); + var installedPythonDirectory = Path.Combine(DataLocation.DataDirectory(), "PythonEmbeddable"); // Python 3.8.9 is used for Windows 7 compatibility DroplexPackage.Drop(App.python_3_8_9_embeddable, installedPythonDirectory).Wait(); @@ -207,4 +207,4 @@ namespace Flow.Launcher.Core.Plugin }); } } -} \ No newline at end of file +}