From b054045c0e482e2fb4359710be7e3e1d6631d81d Mon Sep 17 00:00:00 2001 From: Staf Verhaegen Date: Wed, 7 Oct 2020 17:44:14 +0200 Subject: [PATCH] Typo in python af.createLibrary() signature. Small typo. --- crlcore/src/pyCRL/PyAllianceFramework.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crlcore/src/pyCRL/PyAllianceFramework.cpp b/crlcore/src/pyCRL/PyAllianceFramework.cpp index f2e99f0d..b017ecf7 100644 --- a/crlcore/src/pyCRL/PyAllianceFramework.cpp +++ b/crlcore/src/pyCRL/PyAllianceFramework.cpp @@ -285,7 +285,7 @@ extern "C" { } if (__cs.getObjectIds() == ":string:int" ) { } - else if (__cs.getObjectIds() == ":strint:int:string") libName = PyString_AsString(arg2); + else if (__cs.getObjectIds() == ":string:int:string") libName = PyString_AsString(arg2); else { PyErr_SetString( ConstructorError, "Bad parameter type for AllianceFramework.createLibrary()." ); return NULL;