From 9ad6947b48bd92d5518645a3dbc90fd6afdf2d26 Mon Sep 17 00:00:00 2001 From: Devdatta Kulkarni Date: Mon, 16 Mar 2015 13:03:17 -0500 Subject: [PATCH] Removing display of help screen when errors occur Change-Id: If97fb0625f0a643a0c8e70616475a888af726112 Closes-Bug: #1432760 --- solumclient/common/cli_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/solumclient/common/cli_utils.py b/solumclient/common/cli_utils.py index f7bae44..6e63a0d 100644 --- a/solumclient/common/cli_utils.py +++ b/solumclient/common/cli_utils.py @@ -57,7 +57,6 @@ class CommandsBase(object): try: return self._actions[action]() except exc.CommandError as ce: - print(self.__doc__) print("ERROR: %s" % ce.message) else: print(self.__doc__)