mirror of
https://github.com/beetbox/beets.git
synced 2025-12-30 20:42:37 +01:00
Merge branch '2790-acousticbrainz' of github.com:rain0r/beets into 2790-acousticbrainz
This commit is contained in:
commit
e1c061a010
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ class Float(Type):
|
|||
self.digits = digits
|
||||
|
||||
def format(self, value):
|
||||
return u'{0:0{1}f}'.format(value or 0, self.digits)
|
||||
return u'{0:.{1}f}'.format(value or 0, self.digits)
|
||||
|
||||
|
||||
class NullFloat(Float):
|
||||
|
|
|
|||
Loading…
Reference in a new issue