From b08f98524c2bd6260793ffe2252ad323604fef22 Mon Sep 17 00:00:00 2001 From: thomasv Date: Sun, 11 Dec 2011 11:37:59 +0100 Subject: [PATCH] wrong length --- client/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/gui.py b/client/gui.py index 4239374b..29af6fa3 100644 --- a/client/gui.py +++ b/client/gui.py @@ -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):