Browse Source

protocol.warn_trustlevel(): minor cleanup

The MMGen Project 6 months ago
parent
commit
7f8bffd886
1 changed files with 3 additions and 3 deletions
  1. 3 3
      mmgen/protocol.py

+ 3 - 3
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)