Trivial: Fix a typo in cluster-run's error message

Change-Id: I5d099447bb71ca3a5a94928619afad62bdb83f32
typo: "Cound not open script file" to "Could"
This commit is contained in:
miaohb 2016-11-23 15:31:06 +08:00
parent 11191fc11c
commit 333ba62294
1 changed files with 1 additions and 1 deletions

View File

@ -901,7 +901,7 @@ class ClusterRun(command.Command):
f = open(args.script, 'r')
script = f.read()
except Exception:
raise exc.CommandError(_("Cound not open script file: %s") %
raise exc.CommandError(_("Could not open script file: %s") %
args.script)
tasks = dict()