Merge "Fix truncated error message"

This commit is contained in:
Zuul 2017-11-21 11:07:20 +00:00 committed by Gerrit Code Review
commit 775856ce78
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,8 @@ def store_cli_param(parsed_args):
try:
os.mkdir(history_path)
except OSError as e:
messages = "Unable to create TripleO history directory: "
"{0}, {1}".format(history_path, e)
messages = "Unable to create TripleO history directory: " \
"{0}, {1}".format(history_path, e)
raise OSError(messages)
if os.path.isdir(history_path):
try: