From 7edd8f925e679ce9239b0aec3a62ef95e80bdaf6 Mon Sep 17 00:00:00 2001 From: Satoshi Nakamoto <65907137+SatoshiNakamotoBitcoin@users.noreply.github.com> Date: Thu, 15 Jun 2023 23:35:57 +0200 Subject: [PATCH] Update spvblock.py --- pybitblock/SPV/spvblock.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pybitblock/SPV/spvblock.py b/pybitblock/SPV/spvblock.py index d47b76e..4b8050b 100644 --- a/pybitblock/SPV/spvblock.py +++ b/pybitblock/SPV/spvblock.py @@ -647,7 +647,7 @@ def mtConn(): # here we convert the result of the command 'getblockcount' on a r close() mtclock() except: - break + pass def mtclock(): try: @@ -656,11 +656,10 @@ def mtclock(): clear() blogo() closed() - output = render("Moscow Time", colors=['yellow'], align='left', font='tiny') - outputT = render(f"{a} MT", colors=['green'], align='left', font='tiny') + output = render("Moscow Time", colors=['yellow'], align='center', font='tiny') + outputT = render(f"{a} O'Clock", colors=['green'], align='center', font='tiny') print(output) print(outputT) - input("\a\nContinue...") except: pass #-----------------------------END MT--------------------------------