[trivial] fix typo in senlin_dashboard/api/utils.py

Change-Id: I3c48e99d7edfdb26e129a90f1079a297af3dc4a2
This commit is contained in:
Frank Kloeker 2018-02-10 15:02:05 +01:00
parent 6d21f96547
commit 67d95f8471
1 changed files with 1 additions and 1 deletions

View File

@ -60,6 +60,6 @@ def load_yaml(data):
try:
loaded_data = yaml.safe_load(data)
except Exception as ex:
raise Exception(_('The specified inpu is not a valid '
raise Exception(_('The specified input is not a valid '
'YAML format: %s') % six.text_type(ex))
return loaded_data