fix qusb2snes launch pathing
This commit is contained in:
parent
3e1464b6c9
commit
90359b62e6
|
@ -347,15 +347,19 @@ async def snes_connect(ctx : Context, address):
|
||||||
seen_problems.add(problem)
|
seen_problems.add(problem)
|
||||||
logging.error(f"Error connecting to QUsb2snes ({problem})")
|
logging.error(f"Error connecting to QUsb2snes ({problem})")
|
||||||
if len(seen_problems) == 1:
|
if len(seen_problems) == 1:
|
||||||
#this is the first problem. Let's try launching QUsb2snes if it isn't already running
|
# this is the first problem. Let's try launching QUsb2snes if it isn't already running
|
||||||
qusb2snes_path = Utils.get_options()["general_options"]["qusb2snes"]
|
qusb2snes_path = Utils.get_options()["general_options"]["qusb2snes"]
|
||||||
import os
|
import os
|
||||||
if os.path.isfile(qusb2snes_path):
|
if os.path.isfile(qusb2snes_path):
|
||||||
logging.info(f"Attempting to start {qusb2snes_path}")
|
logging.info(f"Attempting to start {qusb2snes_path}")
|
||||||
|
else:
|
||||||
|
qusb2snes_path = Utils.local_path(qusb2snes_path)
|
||||||
|
if os.path.isfile(qusb2snes_path):
|
||||||
import subprocess
|
import subprocess
|
||||||
subprocess.Popen(qusb2snes_path, cwd=os.path.dirname(qusb2snes_path))
|
subprocess.Popen(qusb2snes_path, cwd=os.path.dirname(qusb2snes_path))
|
||||||
else:
|
else:
|
||||||
logging.info(f"Attempt to start (Q)Usb2Snes was aborted as path {qusb2snes_path} was not found, please start it yourself if it is not running")
|
logging.info(
|
||||||
|
f"Attempt to start (Q)Usb2Snes was aborted as path {qusb2snes_path} was not found, please start it yourself if it is not running")
|
||||||
|
|
||||||
await asyncio.sleep(1)
|
await asyncio.sleep(1)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue