Commit d62e681b authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

SolverParameters: Fix Python syntax warning.

Showing with 1 addition and 1 deletion
+1 -1
......@@ -104,7 +104,7 @@ class SolverParametersList(SQLSubModel):
solvers = execute("SELECT DISTINCT solver FROM solver_parameter")
for solver in solvers:
if solver is not "mage8":
if solver != "mage8":
continue
data = execute("SELECT ind, name, value " +
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment