From 282e2cc5595ac2d71a758576b93dfff9974416c3 Mon Sep 17 00:00:00 2001 From: Daniel Edgecumbe Date: Sun, 1 Oct 2017 07:43:05 +0100 Subject: [PATCH] [block] Fix pointless .format method --- block.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/block.py b/block.py index 97547f1..b9ce2f0 100644 --- a/block.py +++ b/block.py @@ -179,8 +179,7 @@ class BlockView(view.View): self._pad.addstr(6, 36, "Transactions: {}".format( len(block["tx"])), CBOLD) - self._pad.addstr(6, 68, "[UP/DOWN: browse, ENTER: select]".format( - len(block["tx"])), CYELLOW) + self._pad.addstr(6, 68, "[UP/DOWN: browse, ENTER: select]", CYELLOW) if self._selected_tx is None or self._tx_offset is None: # Shouldn't happen