Fixes mistral-server --version command

This patch changes the call into oslo_config to pass the string
containing the version instead of passing the version module.

Change-Id: I698d7206c195f1762dfbadb78c599c60be7f310b
Fixes-bug: 1717869
This commit is contained in:
Ryan Brady 2018-02-06 08:48:25 -05:00
parent 9b4badd14f
commit 897364400e
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ def parse_args(args=None, usage=None, default_config_files=None):
CONF(
args=args,
project='mistral',
version=version,
version=version.version_string,
usage=usage,
default_config_files=default_config_files
)