Merge pull request #8548 from terminalmage/quickfix

Minor spelling fix
This commit is contained in:
Pedro Algarvio 2013-11-15 01:26:32 -08:00
commit 341308485e
2 changed files with 3 additions and 3 deletions

View File

@ -395,7 +395,7 @@ def setup_logfile_logger(log_path, log_level='error', log_format=None,
# Logging facilities start with LOG_ if this is not the case
# fail right now!
raise RuntimeError(
'The syslog facility {0!r} is not know'.format(
'The syslog facility {0!r} is not known'.format(
facility_name
)
)
@ -410,7 +410,7 @@ def setup_logfile_logger(log_path, log_level='error', log_format=None,
# This python syslog version does not know about the user provided
# facility name
raise RuntimeError(
'The syslog facility {0!r} is not know'.format(
'The syslog facility {0!r} is not known'.format(
facility_name
)
)

View File

@ -221,7 +221,7 @@ class SaltStackVersion(object):
def from_name(cls, name):
if name.lower() not in cls.LNAMES:
raise ValueError(
'Named version {0!r} is not know'.format(name)
'Named version {0!r} is not known'.format(name)
)
return cls(*cls.LNAMES[name.lower()])