Closed waterlubber closed 5 years ago
You could put a try: except around the import lines in ExTool's load.py
Possibly:
try:
import key
except ValueError:
class FakeKey(object):
def GetForegroundWindow():
return None
def GetWindowName(active):
return "none"
key = FakeKey()
I was able to fix it with the above fix and also by commenting out
from winsound import *
I've been running Elite in WINE, and while the game works fantastic, a few EDMC plugins don't.
I'm running EDMC natively, and most plugins work, but the Canonn ones don't: EXTool refuses to load in with the error
ValueError: _type_ 'v' not supported
https://pastebin.com/raw/RXrat9jq
Is this something that I would be able to patch myself? Or would it require a full rewrite? I'd like to help if possible, but I haven't written Python in a while.
Thanks for any assistance you can offer.