Apply 2to3 automatic migration

This commit is contained in:
Guewen Baconnier
2017-11-15 14:55:11 +01:00
parent 96c9a38150
commit f9c290a45a
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -25,14 +25,14 @@ class RedisSessionStore(SessionStore):
self.expiration = DEFAULT_SESSION_TIMEOUT
else:
self.expiration = expiration
self.prefix = u'session:'
self.prefix = 'session:'
if prefix:
self.prefix = u'%s:%s:' % (
self.prefix = '%s:%s:' % (
self.prefix, prefix
)
def build_key(self, sid):
if isinstance(sid, unicode):
if isinstance(sid, str):
sid = sid.encode('utf-8')
return '%s%s' % (self.prefix, sid)