Skip to content

Commit

Permalink
Add missing space to warning message (pythonGH-14915)
Browse files Browse the repository at this point in the history
This typo was introduced in pythonGH-13409 when changing the message text.
(cherry picked from commit c4106af)

Co-authored-by: Florian Bruhin <me@the-compiler.org>
  • Loading branch information
The-Compiler authored and miss-islington committed Aug 22, 2019
1 parent 967d625 commit 64fbd5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/collections/__init__.py
Original file line number Diff line number Diff line change
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 64fbd5a

Please sign in to comment.