Jens Diemer
Jens Diemer
This is also not valid? ``` AssertionError: html code is not valid: Unexpected end tag `input` (Line 1, Column 49), at line 1, column 50 - code: '' ``` Should...
This problem has other guys, too: https://github.com/jezdez/django_compressor/issues/60 ;) The real problem is here: http://bugs.python.org/issue670664 and has pachtes...
I tried http://bugs.python.org/file22767/hp_fix.diff from http://bugs.python.org/issue670664 and this seems to fix this issues! I add the patch in my django-tools with: https://github.com/jedie/django-tools/commit/aa722b3ddeaa7989fc497665ca894ab9282fe0dd
No it's related to pickle... I made a independent test script: ``` from __future__ import print_function import sys from copy import copy from hashlib import md5 from io import BytesIO...
> If you have a better plan I will be glad to hear/read it No, sorry ;) In the end, i have generated all images... But it took a long...
I have the same problem and not import imagekit in settings... ``` >>> import appconf; import imagekit; print appconf.__version__; print imagekit.__version__ 1.0.2 3.2.7 ``` python v2.7 Django v1.8.18
> did you have any other imports in settings? Yes i have imports in settings. But IMHO they are not related to imagekit... I added a `traceback.print_stack()` in **imagekit/__init__.py** to...
``` $ pip freeze ... Django==1.8.18 django-appconf==1.0.2 django-appdata==0.2.0 ... django-imagekit==3.2.7 ... Pillow==2.9.0 ... pytest==3.4.1 pytest-cov==2.5.1 pytest-django==3.1.2 ... ``` Think it's related to my setup, see also: https://github.com/django-compressor/django-appconf/issues/30
Maybe something like https://github.com/julen/django-statici18n/commit/7638920e7be8247857fad36b422d977bcac3cf60 is a possible solution?!?
thanks for your support. I updated to last version: doesn't help I added a "apps.py": doesn't help But i change a little bit the pytest run and now it's: **AttributeError:...