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
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