summaryrefslogtreecommitdiffstats
path: root/doc/guide/guide.org
diff options
context:
space:
mode:
Diffstat (limited to 'doc/guide/guide.org')
-rw-r--r--doc/guide/guide.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guide/guide.org b/doc/guide/guide.org
index ad0c5953a..55c172535 100644
--- a/doc/guide/guide.org
+++ b/doc/guide/guide.org
@@ -754,7 +754,7 @@ def run(api):
api.log.info('operation aborted')
except PublicError, e:
error = e
- except StandardError, e:
+ except Exception, e:
api.log.exception('%s: %s', e.__class__.__name__, str(e))
error = InternalError()
if error is not None: