diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 354258a..5c91b1c 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -14,7 +14,7 @@ A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. -**If the feature request is accepted, would you be willing to submit a PR?** +**If the feature request is accepted, would you be willing to submit a pull request?** Yes / No diff --git a/deploy/windows/create_exe.py b/deploy/windows/create_exe.py index 129daff..41078e4 100644 --- a/deploy/windows/create_exe.py +++ b/deploy/windows/create_exe.py @@ -17,7 +17,7 @@ import subprocess def __main(): with contextlib.suppress(AttributeError, psutil.Error): if psutil.Process().parent().parent().name() == "explorer.exe": - subprocess.Popen("powershell -NoExit -Command \\\"& {0}\\\"".format(sys.argv[0])) + subprocess.Popen("powershell -NoExit -Command \\\"& '{0}'\\\"".format(sys.argv[0])) return main()