Commit ca35720c57686edc29926370362e38d612f720b4
1 parent
37e28f2c
Exists in
master
Fix typo.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
flaskr/models.py
@@ -71,7 +71,7 @@ class Estimation(db.Model): | @@ -71,7 +71,7 @@ class Estimation(db.Model): | ||
71 | 71 | ||
72 | def get_output_dict(self): | 72 | def get_output_dict(self): |
73 | if self._output_dict is None: | 73 | if self._output_dict is None: |
74 | - if self._output_yaml is None: | 74 | + if self.output_yaml is None: |
75 | self._output_dict = None | 75 | self._output_dict = None |
76 | else: | 76 | else: |
77 | self._output_dict = yaml_load(self.output_yaml) | 77 | self._output_dict = yaml_load(self.output_yaml) |