Johann Bauer
7 years ago
No known key found for this signature in database
GPG Key ID: 84F1BF925B1F484D
1 changed files with
1 additions and
1 deletions
-
lib/util.py
|
|
@ -113,7 +113,7 @@ class Fiat(object): |
|
|
|
return 'Fiat(%s)'% self.__str__() |
|
|
|
|
|
|
|
def __str__(self): |
|
|
|
if hasattr(self.value, 'is_nan') and self.value.is_nan(): |
|
|
|
if self.value.is_nan(): |
|
|
|
return _('No Data') |
|
|
|
else: |
|
|
|
return "{:.2f}".format(self.value) + ' ' + self.ccy |
|
|
|