Skip to content

Commit 2712e48

Browse files
authored
Merge pull request #1 from dimpase/patch-9
remove CR from msolve pattern
2 parents 3b75886 + 37e30db commit 2712e48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/features/msolve.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ def is_functional(self):
5959
# if msolve_out.returncode != 0:
6060
# return FeatureTestResult(self, False, reason="msolve -h returned "
6161
# f"nonzero exit status {msolve_out.returncode}")
62-
if (msolve_out.stdout[:46] !=
63-
b'\nmsolve library for polynomial system solving\n'):
62+
if (msolve_out.stdout[:45] !=
63+
b'\nmsolve library for polynomial system solving'):
6464
return FeatureTestResult(self, False,
6565
reason="output of msolve -h not recognized")
6666
return FeatureTestResult(self, True)

0 commit comments

Comments
 (0)