Merge branch 'master' of gitorious.org:electrum/electrum

This commit is contained in:
ThomasV 2011-12-12 13:57:28 +03:00
commit 340c63bd49
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ def format_satoshis(x):
s = str( Decimal(x) /100000000 )
if not '.' in s: s += '.'
p = s.find('.')
s += " "*( 8 - ( len(s) - p ))
s += " "*( 9 - ( len(s) - p ))
return s
def numbify(entry, is_int = False):