gh-122311: Fix typo in the pickle error formatting code (GH-122312)

This commit is contained in:
Serhiy Storchaka 2024-07-26 17:48:44 +03:00 committed by GitHub
parent dcafb362f7
commit 7c2921844f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1153,7 +1153,7 @@ class _Pickler:
except UnicodeEncodeError:
raise PicklingError(
"can't pickle global identifier '%s.%s' using "
"pickle protocol %i" % (module, name, self.proto)) from None
"pickle protocol %i" % (module_name, name, self.proto)) from None
def save_type(self, obj):
if obj is type(None):