protocol.warn_trustlevel(): minor cleanup

This commit is contained in:
The MMGen Project 2025-05-28 11:40:40 +00:00
commit 7f8bffd886
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2

View file

@ -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 coins {p} testing status: {t}
This coins 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)