From 5dcc3b6164fea72c236ec339938c0117b2330bb6 Mon Sep 17 00:00:00 2001 From: Terry Howe <terrylhowe@gmail.com> Date: Wed, 27 Nov 2013 14:17:53 -0700 Subject: [PATCH] Add return Closes-Bug: 1246356 Change-Id: I70999a91062b9c61e5f420b1ed33a45086b62fd4 --- openstackclient/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstackclient/shell.py b/openstackclient/shell.py index f8a47ca664..4ac7683f2e 100644 --- a/openstackclient/shell.py +++ b/openstackclient/shell.py @@ -122,7 +122,7 @@ class OpenStackShell(app.App): def run(self, argv): try: - super(OpenStackShell, self).run(argv) + return super(OpenStackShell, self).run(argv) except Exception as e: if not logging.getLogger('').handlers: logging.basicConfig()