grammar fixes (#4792)

* grammar fixes

* author(s)
This commit is contained in:
Andy 2021-02-15 14:31:01 -08:00 committed by GitHub
parent dc68bc5d37
commit 9b4363eff3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,9 +21,9 @@ class SharedLibImportWarner(MetaPathFinder):
if parts[0] != "cog_shared" or len(parts) != 2:
return None
msg = (
"One of cogs uses shared libraries which are"
"One of the cogs uses shared libraries which are"
" deprecated and scheduled for removal in the future.\n"
"You should inform author of the cog about this message."
"You should inform the author(s) of the cog about this message."
)
warnings.warn(msg, SharedLibDeprecationWarning, stacklevel=2)
return None