From aadd7744ee057ee642fdfc3e7bd7ae5df7da0662 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sun, 25 Oct 2020 11:43:41 +0100 Subject: [PATCH] Small typo in GDS driver Python wrapper error message. --- crlcore/src/pyCRL/PyGds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crlcore/src/pyCRL/PyGds.cpp b/crlcore/src/pyCRL/PyGds.cpp index 383b37a8..bf6d229a 100644 --- a/crlcore/src/pyCRL/PyGds.cpp +++ b/crlcore/src/pyCRL/PyGds.cpp @@ -70,11 +70,11 @@ extern "C" { if (IsPyCell(pyCell)) { Gds::save( PYCELL_O(pyCell) ); } else { - PyErr_SetString( ConstructorError, "Gds.load(): Bad parameter type (not a Cell)." ); + PyErr_SetString( ConstructorError, "Gds.save(): Bad parameter type (not a Cell)." ); return NULL; } } else { - PyErr_SetString( ConstructorError, "Gds.load(): Bad number of parameters." ); + PyErr_SetString( ConstructorError, "Gds.save(): Bad number of parameters." ); return NULL; } HCATCH