From 63c24122db26293dba2f6dc828d9e3d1371b041d Mon Sep 17 00:00:00 2001 From: sourcepirate Date: Wed, 22 Mar 2017 06:39:23 +0530 Subject: [PATCH] Removed raw string in cookies documentation --- sanic/cookies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/cookies.py b/sanic/cookies.py index ae77bb44..ce096cd2 100644 --- a/sanic/cookies.py +++ b/sanic/cookies.py @@ -19,7 +19,7 @@ _Translator.update({ def _quote(str): - r"""Quote a string for use in a cookie header. + """Quote a string for use in a cookie header. If the string does not need to be double-quoted, then just return the string. Otherwise, surround the string in doublequotes and quote (with a \) special characters.