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 <daniel@eggers-club.de>
This commit is contained in:
Daniel Egger 2018-08-11 22:18:44 +02:00 committed by Carles Cufí
commit f3a6e8aa89

View file

@ -15,7 +15,7 @@ try:
import ply.yacc as yacc import ply.yacc as yacc
except ImportError: except ImportError:
print("PLY library for Python 3 not installed.") 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.") print("package manager or the 'pip' tool.")
sys.exit(1) sys.exit(1)