diff options
author | James Polley <jp@jamezpolley.com> | 2014-11-13 07:48:03 +0100 |
---|---|---|
committer | James Polley <jp@jamezpolley.com> | 2014-12-10 09:00:29 +0100 |
commit | 864a74df7a34eced2131ce47b954d6b5c7364910 (patch) | |
tree | 4d1c228f2803b7b1aaf270d63eb8d536280623bb /zuul/cmd/cloner.py | |
parent | 1f4f8e136ec33b8babf58c0f43a83860fa329e52 (diff) | |
download | zuul-864a74df7a34eced2131ce47b954d6b5c7364910.tar.gz |
Remove "properly" from error message for clarity
The tool is not checking to see that values of the variables are
"proper", it's only checking that they are set.
Removing the word "Proper" from the error message makes this clearer.
Change-Id: Ieea3565a05c8eeb6f67fd140a42197a059288f33
Diffstat (limited to 'zuul/cmd/cloner.py')
-rwxr-xr-x | zuul/cmd/cloner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zuul/cmd/cloner.py b/zuul/cmd/cloner.py index a895f2433..892216103 100755 --- a/zuul/cmd/cloner.py +++ b/zuul/cmd/cloner.py @@ -97,7 +97,7 @@ class Cloner(zuul.cmd.ZuulApp): zuul_missing = [zuul_opt for zuul_opt, val in vars(args).items() if zuul_opt.startswith('zuul') and val is None] if zuul_missing: - parser.error(("Some Zuul parameters are not properly set:\n\t%s\n" + parser.error(("Some Zuul parameters are not set:\n\t%s\n" "Define them either via environment variables or " "using options above." % "\n\t".join(sorted(zuul_missing)))) |