Skip to content

Commit

Permalink
Fix wrong default attribute for force https
Browse files Browse the repository at this point in the history
  • Loading branch information
jdelasoie committed Jul 13, 2017
1 parent 718e437 commit 840ade7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_tequila/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
(c) All rights reserved. ECOLE POLYTECHNIQUE FEDERALE DE LAUSANNE, Switzerland, VPSI, 2017
'''

__version__ = '2.1.10'
__version__ = '2.1.11'
2 changes: 1 addition & 1 deletion django_tequila/tequila_auth_views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def login(request):
try:
force_redirect_https = settings.TEQUILA_FORCE_REDIRECT_HTTPS
except AttributeError:
force_redirect_https = True
force_redirect_https = False

tequila_client = TequilaClient(EPFLConfig(server_url = server_url,
additional_params = additional_params,
Expand Down

0 comments on commit 840ade7

Please sign in to comment.