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:
parent
b5ef9b6214
commit
eb8ed7e340
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue