django-cas icon indicating copy to clipboard operation
django-cas copied to clipboard

fix bug with Gateway features in Python 3.5

Open ptitloup opened this issue 5 years ago • 2 comments

hello, I've just fixed a bug with the gateway feature in python 3.5 in this line : https://github.com/kstateome/django-cas/blob/develop/cas/views.py#L70 I replaced extra_params = gateway_params + list(query_list) by extra_params = gateway_params + list(query_dict.items()) Without this change, the query_list is empty Can you check if it's ok for you and add it in your code ? Thx

ptitloup avatar Aug 28 '19 13:08 ptitloup

FYI : Apps used with Django 1.11

ptitloup avatar Aug 28 '19 14:08 ptitloup

PR #91

ptitloup avatar Aug 29 '19 09:08 ptitloup