From 67d95f84710c3b34ed5877452fb78722f95cffc2 Mon Sep 17 00:00:00 2001 From: Frank Kloeker Date: Sat, 10 Feb 2018 15:02:05 +0100 Subject: [PATCH] [trivial] fix typo in senlin_dashboard/api/utils.py Change-Id: I3c48e99d7edfdb26e129a90f1079a297af3dc4a2 --- senlin_dashboard/api/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/senlin_dashboard/api/utils.py b/senlin_dashboard/api/utils.py index 2613538e..c7d85582 100644 --- a/senlin_dashboard/api/utils.py +++ b/senlin_dashboard/api/utils.py @@ -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