From 91a30ce8af2f45e189e494c69fcfdd243e916727 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Tue, 4 Dec 2012 12:29:45 +0000 Subject: [PATCH] Typo in getAbutmentBox(), now display the right function name in errors... --- hurricane/src/isobar/PyCell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hurricane/src/isobar/PyCell.cpp b/hurricane/src/isobar/PyCell.cpp index 368821da..eca7e6fa 100644 --- a/hurricane/src/isobar/PyCell.cpp +++ b/hurricane/src/isobar/PyCell.cpp @@ -547,7 +547,7 @@ extern "C" { METHOD_HEAD ( "Cell.setAbutmentBox()" ) PyBox* pyBox; - if (!PyArg_ParseTuple(args,"O!:Cell.getInstancesUnder", &PyTypeBox, &pyBox)) { + if (!PyArg_ParseTuple(args,"O!:Cell.setAbutmentBox", &PyTypeBox, &pyBox)) { return NULL; } cell->setAbutmentBox ( *PYBOX_O(pyBox) );