summaryrefslogtreecommitdiff
path: root/cherrypy/test/sessiondemo.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/test/sessiondemo.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/test/sessiondemo.py')
-rwxr-xr-xcherrypy/test/sessiondemo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/test/sessiondemo.py b/cherrypy/test/sessiondemo.py
index 4b3d1222..a8585583 100755
--- a/cherrypy/test/sessiondemo.py
+++ b/cherrypy/test/sessiondemo.py
@@ -123,7 +123,7 @@ class Root(object):
'reqcookie': cherrypy.request.cookie.output(),
'sessiondata': copyitems(cherrypy.session),
'servertime': (
- datetime.utcnow().strftime("%Y/%m/%d %H:%M") + " UTC"
+ datetime.utcnow().strftime('%Y/%m/%d %H:%M') + ' UTC'
),
'serverunixtime': calendar.timegm(datetime.utcnow().timetuple()),
'cpversion': cherrypy.__version__,