diff options
| author | kairat_kushaev <kkushaev@mirantis.com> | 2015-09-22 15:40:02 +0300 |
|---|---|---|
| committer | kairat_kushaev <kkushaev@mirantis.com> | 2015-09-22 15:40:02 +0300 |
| commit | c6addc722c99ce2688b335dd20c796c3a5dab1ba (patch) | |
| tree | 88b9ad2e40a09a6f42f6bc28956a64d2b8df027f /glanceclient/shell.py | |
| parent | 9f8163ec8207393fc01bdc1717772270197b753a (diff) | |
| download | python-glanceclient-c6addc722c99ce2688b335dd20c796c3a5dab1ba.tar.gz | |
Replace exception_to_str with oslo.utils function
The oslo.utils function has exception_to_unicode that can
replace glance util function exception_to_str.
So we don't to have this exception_to_str function in glance
anymore.
Change-Id: I332bc55558087920fdd6ae2d822bece5166f5ba6
Diffstat (limited to 'glanceclient/shell.py')
| -rwxr-xr-x | glanceclient/shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glanceclient/shell.py b/glanceclient/shell.py index faa014c..8d51003 100755 --- a/glanceclient/shell.py +++ b/glanceclient/shell.py @@ -765,4 +765,4 @@ def main(): except KeyboardInterrupt: utils.exit('... terminating glance client', exit_code=130) except Exception as e: - utils.exit(utils.exception_to_str(e)) + utils.exit(encodeutils.exception_to_unicode(e)) |
