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:
parent
7d2e59813f
commit
f3a6e8aa89
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue