django-cas
django-cas copied to clipboard
fix bug with Gateway features in Python 3.5
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
FYI : Apps used with Django 1.11
PR #91