From 7f8bffd886998a89e4be6e26b2de63c8298530e3 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Wed, 28 May 2025 11:40:40 +0000 Subject: [PATCH] protocol.warn_trustlevel(): minor cleanup --- mmgen/protocol.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mmgen/protocol.py b/mmgen/protocol.py index f1c957fc..ae574bf2 100755 --- a/mmgen/protocol.py +++ b/mmgen/protocol.py @@ -361,9 +361,9 @@ def warn_trustlevel(cfg): return m = """ - Support for coin {c!r} is EXPERIMENTAL. The {p} project + Support for coin {c!r} is EXPERIMENTAL. {a} assumes no responsibility for any loss of funds you may incur. - This coin’s {p} testing status: {t} + This coin’s testing status: {t} Are you sure you want to continue? """ @@ -378,7 +378,7 @@ def warn_trustlevel(cfg): 2: yellow('MEDIUM'), 3: green('OK'), }[trust_level], - p = gc.proj_name) + a = gc.author) if cfg.test_suite: cfg._util.qmsg(warning)