kstateome / django-cas

K-State's maintained version of django-cas
MIT License
112 stars 83 forks source link

fix bug with Gateway features in Python 3.5 #90

Open ptitloup opened 5 years ago

ptitloup commented 5 years ago

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 commented 5 years ago

FYI : Apps used with Django 1.11

ptitloup commented 5 years ago

PR #91