Add missing space to warning message (GH-14915) (GH-15379)
This typo was introduced in GH-13409 when changing the message text.
(cherry picked from commit c4106af38b
)
Co-authored-by: Florian Bruhin <me@the-compiler.org>
This commit is contained in:
parent
967d625a6d
commit
8ede9676bb
|
@ -47,7 +47,7 @@ def __getattr__(name):
|
|||
obj = getattr(_collections_abc, name)
|
||||
import warnings
|
||||
warnings.warn("Using or importing the ABCs from 'collections' instead "
|
||||
"of from 'collections.abc' is deprecated since Python 3.3,"
|
||||
"of from 'collections.abc' is deprecated since Python 3.3, "
|
||||
"and in 3.9 it will stop working",
|
||||
DeprecationWarning, stacklevel=2)
|
||||
globals()[name] = obj
|
||||
|
|
Loading…
Reference in New Issue