summaryrefslogtreecommitdiff
path: root/service/pixelated
diff options
context:
space:
mode:
authorTulio Casagrande <tcasagra@thoughtworks.com>2017-01-20 16:51:18 -0200
committerTulio Casagrande <tcasagra@thoughtworks.com>2017-01-21 12:10:19 -0200
commit3d3c620ac53de1c407ff2ff222d923310770ed62 (patch)
treef673d134790852c7a4067cf83096c163269ca260 /service/pixelated
parenteab5d66e82aad5dc54f64e769fd460d4adbeaedf (diff)
Re-raise the same exception to keep context
Diffstat (limited to 'service/pixelated')
-rw-r--r--service/pixelated/config/leap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/pixelated/config/leap.py b/service/pixelated/config/leap.py
index 52a70f3e..2b3a242a 100644
--- a/service/pixelated/config/leap.py
+++ b/service/pixelated/config/leap.py
@@ -99,7 +99,7 @@ class BootstrapUserServices(object):
log.warn('{0}: {1}. Closing session for user: {2}'.format(e.__class__.__name__, e, user_auth.username))
if leap_session:
leap_session.close()
- raise e
+ raise
@defer.inlineCallbacks
def _setup_user_services(self, leap_session):