We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf93627 commit 19db261Copy full SHA for 19db261
1 file changed
src/windows/console.py
@@ -5,6 +5,8 @@
5
6
from windows.base import Base
7
8
+from sys import executable
9
+
10
class Console(Base):
11
updater: Updater
12
shell: ShellProcess
@@ -40,6 +42,8 @@ def emit_finished(self: Self) -> None:
40
42
def start_shell(self: Self) -> None:
41
43
self.shell = ShellProcess(
44
[
45
+ executable,
46
+ "-m",
47
"gsam",
48
self.filepath,
49
],
0 commit comments