From 996e6dc95919b19f628ac69e3e8a0483e18ef3fe Mon Sep 17 00:00:00 2001 From: Sjoerd Mullender Date: Tue, 23 Jan 1996 16:07:29 +0000 Subject: [PATCH] Corrected format string in api_version_warning. --- Python/modsupport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/modsupport.c b/Python/modsupport.c index 63f5267cc38..b1aa1b5cc90 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -44,7 +44,7 @@ typedef double va_double; static char api_version_warning[] = "WARNING: Python C API version mismatch for module %s:\n\ - This Python has API version %d, module %s has version %s.\n"; + This Python has API version %d, module %s has version %d.\n"; object * initmodule4(name, methods, doc, passthrough, module_api_version)