From 0974f41213e8013116708e146e2bb10518ac2c37 Mon Sep 17 00:00:00 2001 From: zsloan Date: Tue, 14 Aug 2018 20:17:25 +0000 Subject: Fixed minor issue in user_manager.py --- wqflask/wqflask/user_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wqflask/wqflask/user_manager.py b/wqflask/wqflask/user_manager.py index d6f39e83..06a3e274 100644 --- a/wqflask/wqflask/user_manager.py +++ b/wqflask/wqflask/user_manager.py @@ -60,7 +60,7 @@ class AnonUser(object): else: logger.debug("CREATING NEW ANON COOKIE") self.anon_id, self.cookie = create_signed_cookie() - res = flask.make_response() + res = make_response() res.set_cookie(self.cookie_name, self.cookie) self.key = "anon_collection:v1:{}".format(self.anon_id) -- cgit v1.2.3