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:
parent
11191fc11c
commit
333ba62294
@ -901,7 +901,7 @@ class ClusterRun(command.Command):
|
|||||||
f = open(args.script, 'r')
|
f = open(args.script, 'r')
|
||||||
script = f.read()
|
script = f.read()
|
||||||
except Exception:
|
except Exception:
|
||||||
raise exc.CommandError(_("Cound not open script file: %s") %
|
raise exc.CommandError(_("Could not open script file: %s") %
|
||||||
args.script)
|
args.script)
|
||||||
|
|
||||||
tasks = dict()
|
tasks = dict()
|
||||||
|
Loading…
Reference in New Issue
Block a user