Add missing space to warning message (GH-14915)

This typo was introduced in GH-13409 when changing the message text.
This commit is contained in:
Florian Bruhin 2019-08-22 08:06:51 +02:00 committed by Raymond Hettinger
parent 71876fa438
commit c4106af38b

View file

@ -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