1
0

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

This commit is contained in:
ThomasV
2011-12-13 07:33:32 +01:00
4 changed files with 56 additions and 17 deletions

View File

@@ -1,2 +1,5 @@
include README LICENCE RELEASE-NOTES
recursive-include *.py
include *.py
exclude setup.py
recursive-include ecdsa *.py
recursive-include aes *.py

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):