1
0
Fork 0
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:
Roderik Ploszek 2018-02-24 21:10:43 +01:00
parent e543490cfd
commit a19f0b5dda

View file

@ -1150,7 +1150,7 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
if DEBUG >= 5:
print(s)
m = re.search('^(Intractable!|Unsolved!|Solved!)\n', s)
m = re.search('^(Intractable!|Unsolved!|Solved!)', s.rstrip())
if m:
result = m.group(1)
break