mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-12 09:11:55 -06:00
Fixed cli.run() catching SystemExit exception under Python2.4
Resolves BZ #498088
This commit is contained in:
parent
b7438c3da2
commit
3f4a0a2d77
@ -675,7 +675,7 @@ def run(api):
|
||||
api.log.info('operation aborted')
|
||||
except PublicError, e:
|
||||
error = e
|
||||
except Exception, e:
|
||||
except StandardError, e:
|
||||
api.log.exception('%s: %s', e.__class__.__name__, str(e))
|
||||
error = InternalError()
|
||||
if error is not None:
|
||||
|
Loading…
Reference in New Issue
Block a user