From 51a5eb928c3c0c0ea7d216c0a03dda1af6b07068 Mon Sep 17 00:00:00 2001 From: Julie Pichon Date: Fri, 17 Nov 2017 10:34:53 +0000 Subject: [PATCH] Fix truncated error message The second part of the message with the error details would never get displayed. Change-Id: Id1725d6d0028aab907263c1d867d64bb15df77f1 Related-Bug: #1704380 Related-Bug: #1732751 --- tripleoclient/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tripleoclient/utils.py b/tripleoclient/utils.py index 4ef4860cf..d9f2ae8e7 100644 --- a/tripleoclient/utils.py +++ b/tripleoclient/utils.py @@ -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: