Wenli Tsai
Wenli Tsai
We also tried to add utf-8 declaration in the top of synthesis.py. ``` # -*- coding: utf-8 -*- ``` Not working, either.
Thanks @gloriouskilka , we declare the utf-8 encoding for file open and it seems to work. :) ``` - with open(os.path.join(eval_dir, 'map.txt'), 'w') as file: + with open(os.path.join(eval_dir, 'map.txt'), 'w',...
@theplatapi that fork works great, thank you!
http://xn--p8s96olm5c.xn--v0qr21b.xn--kpry57d/%E8%AC%9B/%E9%80%99%E6%88%91%E7%84%A1%E6%84%9B%E7%9F%A3%E5%95%8A%E7%9F%A3%E5%95%8A
I also failed to migrate to zero, with different error. The error messge is below: ```bash $ python manage.py migrate wagtailcore zero Operations to perform: Unapply all migrations: wagtailcore Running...
Weasel for rime also has comment alignment. Did you mean horizontal mode as linear mode? The code checks if now it is vertical mode, only the vertical mode will be...
We found that the `classes = ['collapse'] ` cause this problem. This is our simplified code: ```python import nested_admin from hello_dict.models import Category, CategoryRelation class WordInline( nested_admin.SortableHiddenMixin, nested_admin.NestedTabularInline, ): model...
Thanks for letting me know about the 4.1.2 release. I'll find some time before September to help confirm if the bug has been fixed.
After I update the version of nested-django-admin to 4.1.2, if the NestedTabularInline contains `classes = ['collapse']`, it is still undraggable. models.py ```python from django.db import models class HeadWord(models.Model): word =...