Simeon Visser
Simeon Visser
This should be done anyhow as the site now recommends setup.py upload which is known to be sending the password in plain text.
I'm able to import this package in Python 3.4 so with a bit of testing I think this package can be marked as Python 3 compatible.
That's in easymode.i18n.admin.forms at line 126 (easymode 1.0b1).
I've created a subclass of the SearchForm of Haystack (django-haystack==1.2.6), which is a subclass of Django's forms.Form (source: https://github.com/toastdriven/django-haystack/blob/v1.2.6/haystack/forms.py ) My custom search form looks like: ``` python from django.db...