diff options
| author | Terry Howe <terrylhowe@gmail.com> | 2013-11-27 14:17:53 -0700 |
|---|---|---|
| committer | Terry Howe <terrylhowe@gmail.com> | 2013-11-27 14:25:12 -0700 |
| commit | 5dcc3b6164fea72c236ec339938c0117b2330bb6 (patch) | |
| tree | 4c9154f8370e62080e2e03c38b324bb6466b2ff0 /openstackclient | |
| parent | 935781fdf961d0501b7400acbe4c86bdd9f284f2 (diff) | |
| download | python-openstackclient-5dcc3b6164fea72c236ec339938c0117b2330bb6.tar.gz | |
Add return Closes-Bug: 1246356
Change-Id: I70999a91062b9c61e5f420b1ed33a45086b62fd4
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/shell.py b/openstackclient/shell.py index f8a47ca6..4ac7683f 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() |
