mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Merge "Correct reraising of exception"
This commit is contained in:
commit
307a847685
1 changed files with 2 additions and 2 deletions
|
|
@ -148,10 +148,10 @@ class OpenStackShell(shell.OpenStackShell):
|
|||
'auth_type': self._auth_type,
|
||||
},
|
||||
)
|
||||
except (IOError, OSError) as e:
|
||||
except (IOError, OSError):
|
||||
self.log.critical("Could not read clouds.yaml configuration file")
|
||||
self.print_help_if_requested()
|
||||
raise e
|
||||
raise
|
||||
|
||||
if not self.options.debug:
|
||||
self.options.debug = None
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue