remove spaces in Python Embeddable folder name

This commit is contained in:
Jeremy Wu 2021-06-19 19:09:09 +10:00 committed by GitHub
parent fd96d926c9
commit e6db8b85e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
});
}
}
}
}