Correct warning message typo

pull/1229/head
nicolargo 2018-01-30 20:44:51 +01:00
parent 7a0b9bcbc9
commit a796bf5604
6 changed files with 6 additions and 6 deletions

View File

@ -35,7 +35,7 @@ try:
except ImportError as e:
import_error_tag = True
# Display debu message if import KeyError
logger.warning("Missing Python Lib ({}), Cloud plugin is disable".format(e))
logger.warning("Missing Python Lib ({}), Cloud plugin is disabled".format(e))
else:
import_error_tag = False

View File

@ -35,7 +35,7 @@ try:
except ImportError as e:
import_error_tag = True
# Display debu message if import KeyError
logger.warning("Missing Python Lib ({}), Docker plugin is disable".format(e))
logger.warning("Missing Python Lib ({}), Docker plugin is disabled".format(e))
else:
import_error_tag = False

View File

@ -28,7 +28,7 @@ try:
except Exception as e:
import_error_tag = True
# Display debu message if import KeyError
logger.warning("Missing Python Lib ({}), Nvidia GPU plugin is disable".format(e))
logger.warning("Missing Python Lib ({}), Nvidia GPU plugin is disabled".format(e))
else:
import_error_tag = False

View File

@ -32,7 +32,7 @@ try:
import netifaces
except ImportError as e:
import_error_tag = True
logger.warning("Missing Python Lib ({}), IP plugin is disable".format(e))
logger.warning("Missing Python Lib ({}), IP plugin is disabled".format(e))
else:
import_error_tag = False

View File

@ -28,7 +28,7 @@ try:
from pymdstat import MdStat
except ImportError as e:
import_error_tag = True
logger.warning("Missing Python Lib ({}), Raid plugin is disable".format(e))
logger.warning("Missing Python Lib ({}), Raid plugin is disabled".format(e))
else:
import_error_tag = False

View File

@ -33,7 +33,7 @@ try:
from wifi.exceptions import InterfaceError
except ImportError as e:
import_error_tag = True
logger.warning("Missing Python Lib ({}), Wifi plugin is disable".format(e))
logger.warning("Missing Python Lib ({}), Wifi plugin is disabled".format(e))
else:
import_error_tag = False