Skip to content

Commit

Permalink
Separate args in Popen. Fixes #95
Browse files Browse the repository at this point in the history
  • Loading branch information
Huite committed Oct 27, 2023
1 parent 8bee491 commit 9c7a586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/qgistim/core/server_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def start_server(self, interpreter: str) -> Dict[str, Any]:
"""
env_vars = self.environmental_variables()
self.process = subprocess.Popen(
f"{interpreter} -u -m gistim serve",
[interpreter, "-u", "-m", "gistim", "serve"],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
Expand Down

0 comments on commit 9c7a586

Please sign in to comment.