From 954d82ccbc4a1d3cb3c488e774d100f39a19567b Mon Sep 17 00:00:00 2001 From: wijnand Date: Fri, 29 Jun 2018 10:08:16 +0200 Subject: [PATCH] fix issue with project config query --- colorbleed/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colorbleed/lib.py b/colorbleed/lib.py index e1fe8b7e69..3865c00932 100644 --- a/colorbleed/lib.py +++ b/colorbleed/lib.py @@ -259,7 +259,7 @@ def get_project_fps(): project_name = io.active_project() project = io.find_one({"name": project_name, "type": "project"}, - projection={"config.fps": True}) + projection={"config": True}) config = project.get("config", None) assert config, "This is a bug"