systemvm: Fixed typo (#4621)

This commit is contained in:
Sina Kashipazha 2021-01-27 11:05:06 +01:00 committed by GitHub
parent f70da104a0
commit b84a675de9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ pycodestyle --max-line-length=179 *py
pycodestyle --max-line-length=179 --exclude=monitorServices.py,baremetal-vr.py,passwd_server_ip.py `find ../debian -name \*.py`
if [ $? -gt 0 ]
then
echo "Pylint failed, please check your code"
echo "pycodestyle failed, please check your code"
exit 1
fi
@ -35,7 +35,7 @@ pylint --disable=R,C,W *.py
pylint --disable=R,C,W `find ../debian -name \*.py`
if [ $? -gt 0 ]
then
echo "Pylint failed, please check your code"
echo "pylint failed, please check your code"
exit 1
fi