We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b30252b commit cc5658dCopy full SHA for cc5658d
IDCBrowser/IDCHandlerModule.py
@@ -250,12 +250,10 @@ def registerCustomProtocol(self):
250
251
# Construct the path to PythonSlicer.exe in the same directory
252
253
- python_path = shlex.quote(os.path.join(python_dir, "PythonSlicer.exe"))
+ python_path = os.path.join(python_dir, "PythonSlicer.exe")
254
255
current_dir = os.path.dirname(os.path.realpath(__file__))
256
- python_script_path = shlex.quote(
257
- os.path.join(current_dir, "Resources", "resolver.py")
258
- )
+ python_script_path = os.path.join(current_dir, "Resources", "resolver.py")
259
260
# Register IDC Browser URL protocol in Windows Registry
261
0 commit comments