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:
Miss Islington (bot) 2019-08-21 23:30:26 -07:00 committed by Raymond Hettinger
parent 967d625a6d
commit 8ede9676bb
1 changed files with 1 additions and 1 deletions

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