Commit ca35720c57686edc29926370362e38d612f720b4

Authored by Antoine Goutenoir
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 71  
72 72 def get_output_dict(self):
73 73 if self._output_dict is None:
74   - if self._output_yaml is None:
  74 + if self.output_yaml is None:
75 75 self._output_dict = None
76 76 else:
77 77 self._output_dict = yaml_load(self.output_yaml)
... ...