From 264e8cd469cdcfc793afedb80d224f48d350a360 Mon Sep 17 00:00:00 2001 From: "NODA, Kai" Date: Fri, 17 Jan 2020 23:40:28 +0800 Subject: [PATCH] Remove an invalid escape sequence \s from pydoc (#45) --- deprecation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deprecation.py b/deprecation.py index 0733fbc..ccb7f66 100644 --- a/deprecation.py +++ b/deprecation.py @@ -110,7 +110,7 @@ def deprecated(deprecated_in=None, removed_in=None, current_version=None, * Raises a :class:`~deprecation.DeprecatedWarning` via the :mod:`warnings` module, which is a subclass of the built-in :class:`DeprecationWarning`. Note that built-in - :class:`DeprecationWarning`\s are ignored by default, so for users + :class:`DeprecationWarning`s are ignored by default, so for users to be informed of said warnings they will need to enable them--see the :mod:`warnings` module documentation for more details.