Commit c4106af3 authored by Florian Bruhin's avatar Florian Bruhin Committed by Raymond Hettinger

Add missing space to warning message (GH-14915)

This typo was introduced in GH-13409 when changing the message text.
parent 71876fa4
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment