Skip to content

Commit

Permalink
Add missing space to warning message (GH-14915)
Browse files Browse the repository at this point in the history
This typo was introduced in GH-13409 when changing the message text.
  • Loading branch information
The-Compiler authored and rhettinger committed Aug 22, 2019
1 parent 71876fa commit c4106af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/collections/__init__.py
Expand Up @@ -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
Expand Down

0 comments on commit c4106af

Please sign in to comment.