diff --git a/lib/util.py b/lib/util.py index 1714c78d4..9dbf21c85 100644 --- a/lib/util.py +++ b/lib/util.py @@ -113,7 +113,7 @@ class Fiat(object): return 'Fiat(%s)'% self.__str__() def __str__(self): - if self.value.is_nan(): + if hasattr(self.value, 'is_nan') and self.value.is_nan(): return _('No Data') else: return "{:.2f}".format(self.value) + ' ' + self.ccy