Skip to content

Commit

Permalink
fix(tent): remove unknown module refference (#3802)
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-hawk authored Feb 7, 2023
1 parent 022e9f5 commit b01a015
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions demos/jans-tent/clientapp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

from . import config as cfg
from .client_handler import ClientHandler
from .ressources.errors import MismatchingStateError, OAuthError

oauth = OAuth()

Expand Down Expand Up @@ -216,7 +215,7 @@ def callback():

return redirect('/')

except (MismatchingStateError, OAuthError) as error:
except Exception as error:
print('exception!')
print(error)
app.logger.error(error)
Expand Down

0 comments on commit b01a015

Please sign in to comment.