summaryrefslogtreecommitdiff
path: root/cherrypy/_cpcompat.py
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-08 16:12:31 +0300
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2016-09-08 16:12:31 +0300
commitdc574c422886d192b33a48b036d0e9839c3cc6e0 (patch)
treec2f25676df9d99ee26521367aa1e01692d788a86 /cherrypy/_cpcompat.py
parent2035500ef638a079665a29548aea74761d8877ef (diff)
downloadcherrypy-git-dc574c422886d192b33a48b036d0e9839c3cc6e0.tar.gz
Convert all strings to conform single-quoted style
pre-commit run double-quote-string-fixer --all-files
Diffstat (limited to 'cherrypy/_cpcompat.py')
-rw-r--r--cherrypy/_cpcompat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/_cpcompat.py b/cherrypy/_cpcompat.py
index 9d4e4c37..9430dbbf 100644
--- a/cherrypy/_cpcompat.py
+++ b/cherrypy/_cpcompat.py
@@ -88,7 +88,7 @@ else:
def assert_native(n):
if not isinstance(n, str):
- raise TypeError("n must be a native str (got %s)" % type(n).__name__)
+ raise TypeError('n must be a native str (got %s)' % type(n).__name__)
try:
# Python 3.1+