Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
Support Blender 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
fire committed Dec 20, 2021
1 parent 262f597 commit c4095f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mixer/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ def start_local_server():
args = {"creationflags": subprocess.CREATE_NEW_CONSOLE}
else:
args = {}

import sys
share_data.local_server_process = subprocess.Popen(
[bpy.app.binary_path_python, "-m", "mixer.broadcaster.apps.server", "--port", str(get_mixer_prefs().port)],
[sys.executable, "-m", "mixer.broadcaster.apps.server", "--port", str(get_mixer_prefs().port)],
cwd=dir_path,
shell=False,
**args,
Expand Down

0 comments on commit c4095f0

Please sign in to comment.