From f3a6e8aa89c126a5a558e221f77690cb6b3d711c Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Sat, 11 Aug 2018 22:18:44 +0200 Subject: [PATCH] sanitycheck: Recommend installing "ply" instead of "python3-ply" Since a distributions name for the ply package may change, the only constant name which can be used for a recommendation is the name on PyPi which happens to be "ply". Signed-off-by: Daniel Egger --- scripts/sanity_chk/expr_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sanity_chk/expr_parser.py b/scripts/sanity_chk/expr_parser.py index 575b5c5510d..ead358f2765 100644 --- a/scripts/sanity_chk/expr_parser.py +++ b/scripts/sanity_chk/expr_parser.py @@ -15,7 +15,7 @@ try: import ply.yacc as yacc except ImportError: print("PLY library for Python 3 not installed.") - print("Please install the python3-ply package using your workstation's") + print("Please install the ply package using your workstation's") print("package manager or the 'pip' tool.") sys.exit(1)