From ccb54dbdbb108992ee8171fb5dfe999edd6aad43 Mon Sep 17 00:00:00 2001 From: sbrugman Date: Tue, 8 Sep 2020 20:10:42 +0200 Subject: [PATCH] Reference fix --- postal/pylangclassifier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postal/pylangclassifier.c b/postal/pylangclassifier.c index 70b7154..338691e 100644 --- a/postal/pylangclassifier.c +++ b/postal/pylangclassifier.c @@ -132,7 +132,7 @@ void init_langclassifier(void) { #ifdef IS_PY3K PyObject *module = PyModule_Create(&module_def); #else - PyObject *module = Py_InitModule("_langclassifier", parser_methods); + PyObject *module = Py_InitModule("_langclassifier", langclassifier_methods); #endif if (module == NULL) {