1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix the solver detection in py3/etc.

See https://github.com/shlomif/PySolFC/pull/53 - thanks to @lufebe16 .
This commit is contained in:
Shlomi Fish 2018-03-03 20:09:43 +02:00
parent b5ef9b6214
commit eb8ed7e340

View file

@ -137,7 +137,10 @@ def init():
kw['close_fds'] = True
p = subprocess.Popen(pysollib.settings.FCS_COMMAND+' --help', **kw)
p.stdin.close()
if p.stdout.readline().startswith('fc-solve'):
line = p.stdout.readline()
if sys.version_info >= (3,):
line = line.decode("utf-8")
if line.startswith('fc-solve'):
pysollib.settings.USE_FREECELL_SOLVER = True
if os.name == 'posix':
os.wait() # kill zombi