From ca35720c57686edc29926370362e38d612f720b4 Mon Sep 17 00:00:00 2001 From: Antoine Goutenoir Date: Tue, 11 Feb 2020 11:15:15 +0100 Subject: [PATCH] Fix typo. --- flaskr/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flaskr/models.py b/flaskr/models.py index 3ba24ab..03e2387 100755 --- a/flaskr/models.py +++ b/flaskr/models.py @@ -71,7 +71,7 @@ class Estimation(db.Model): def get_output_dict(self): if self._output_dict is None: - if self._output_yaml is None: + if self.output_yaml is None: self._output_dict = None else: self._output_dict = yaml_load(self.output_yaml) -- libgit2 0.21.2