Skip to content
Snippets Groups Projects
Commit 2ebe9e7c authored by florent's avatar florent
Browse files

Fix a bug in conversion of tuple of tuple python object to matrix.

    * src/entity-py.cc.
parent cde42aa2
No related branches found
No related tags found
No related merge requests found
......@@ -280,8 +280,8 @@ namespace dynamicgraph {
if (!PyTuple_Check(row)) {
throw ExceptionFactory(ExceptionFactory::GENERIC,
"matrix");
fillMatrixRow(m, iRow, row);
}
fillMatrixRow(m, iRow, row);
}
return Value(m);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment