diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-02-01 23:35:02 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-02-01 23:35:02 +0000 |
commit | 8ea67bb6747c27584edf020dbaa68e07a34f40b8 (patch) | |
tree | 5d0bf601a63c4ef5e9cfbd4daedbfa308295079e | |
parent | 4468370cead4494ffd63bcc2dcaecd4a6fe48b93 (diff) | |
parent | 2ca16240286cf0dd93bd6a0bd2e5a00cfe41ac82 (diff) |
Merge "Add more explicit messagae to build_endpoint_map's check option"
-rwxr-xr-x | network/endpoints/build_endpoint_map.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/network/endpoints/build_endpoint_map.py b/network/endpoints/build_endpoint_map.py index 7e8088be..990cbabc 100755 --- a/network/endpoints/build_endpoint_map.py +++ b/network/endpoints/build_endpoint_map.py @@ -280,8 +280,9 @@ def main(): try: if options.check: if not check_up_to_date(options.output_file, options.input_file): - print('EndpointMap template does not match input data', - file=sys.stderr) + print('EndpointMap template does not match input data. Please ' + 'run the build_endpoint_map.py tool to update the ' + 'template.', file=sys.stderr) sys.exit(2) else: build_endpoint_map(options.output_file, options.input_file) |