diff options
author | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2018-09-10 01:38:53 +0200 |
---|---|---|
committer | Sviatoslav Sydorenko <wk@sydorenko.org.ua> | 2018-09-10 01:38:53 +0200 |
commit | 43c83f36f36ce0f04d590b83017526429cf217b2 (patch) | |
tree | 096f190563874b55dd01c68cbf0f8e157ab8c74d | |
parent | 471ae664021fd282217d2e0ed607a697fb01ece6 (diff) | |
download | cherrypy-git-43c83f36f36ce0f04d590b83017526429cf217b2.tar.gz |
Forcefully stringify memcached socket path
-rwxr-xr-x | cherrypy/test/test_session.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/test/test_session.py b/cherrypy/test/test_session.py index f3d47ba0..135b1df2 100755 --- a/cherrypy/test/test_session.py +++ b/cherrypy/test/test_session.py @@ -423,7 +423,7 @@ def memcached_configured(memcached_connection, monkeypatch): monkeypatch.setattr( sessions.MemcachedSession, 'servers', - [memcached_connection], + [str(memcached_connection)], ) |