This commit is contained in:
ThomasV 2015-06-03 14:18:49 +02:00
parent ec795ba3c0
commit fc23b0f490
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ def format_satoshis(x, is_diff=False, num_zeros = 0, decimal_point = 8, whitespa
if whitespaces:
result += " " * (decimal_point - len(fract_part))
result = " " * (15 - len(result)) + result
return result
return result.decode('utf8')
def format_time(timestamp):
import datetime