From 3eeb9597025ef05ec3ed588196d250f7d812735e Mon Sep 17 00:00:00 2001
From: Sergey B Kirpichev <skirpichev@gmail.com>
Date: Thu, 9 Feb 2023 03:27:48 +0300
Subject: [PATCH] gh-101670: Amend 35dd55005e

---
 Python/import.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Python/import.c b/Python/import.c
index 795d368966481e..302255d76edcd5 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2651,7 +2651,7 @@ PyImport_ExtendInittab(struct _inittab *newtab)
     int res = 0;
 
     if (_PyRuntime.imports.inittab != NULL) {
-        Py_FatalError("PyImport_ExtendInittab() may be be called after Py_Initialize()");
+        Py_FatalError("PyImport_ExtendInittab() may not be called after Py_Initialize()");
     }
 
     /* Count the number of entries in both tables */