mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Normalize newline characters for Windows
This commit is contained in:
parent
e543490cfd
commit
a19f0b5dda
1 changed files with 1 additions and 1 deletions
|
@ -1150,7 +1150,7 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
|
||||||
if DEBUG >= 5:
|
if DEBUG >= 5:
|
||||||
print(s)
|
print(s)
|
||||||
|
|
||||||
m = re.search('^(Intractable!|Unsolved!|Solved!)\n', s)
|
m = re.search('^(Intractable!|Unsolved!|Solved!)', s.rstrip())
|
||||||
if m:
|
if m:
|
||||||
result = m.group(1)
|
result = m.group(1)
|
||||||
break
|
break
|
||||||
|
|
Loading…
Add table
Reference in a new issue