From 6fc9e8a59d2b5279abfe617113d42b5c324491d9 Mon Sep 17 00:00:00 2001 From: Natanael Arndt Date: Tue, 23 Mar 2021 22:41:46 +0100 Subject: [PATCH] Remove decode which is not needed anymore --- quit/web/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quit/web/app.py b/quit/web/app.py index 875f7603..66b5f692 100644 --- a/quit/web/app.py +++ b/quit/web/app.py @@ -132,7 +132,7 @@ def register_app(app, arguments): quit = Quit(config, repository, MemoryStore(bindings)) quit.syncAll() - content = quit.store.store.serialize(format='trig').decode() + content = quit.store.store.serialize(format='trig') logger.debug("Initialize store with following content: {}".format(content)) app.config['quit'] = quit