Removing display of help screen when errors occur

Change-Id: If97fb0625f0a643a0c8e70616475a888af726112
Closes-Bug: #1432760
This commit is contained in:
Devdatta Kulkarni
2015-03-16 13:03:17 -05:00
parent a2f3a00906
commit 9ad6947b48

View File

@@ -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__)