Changes between Initial Version and Version 3 of Ticket #26997
- Timestamp:
- Aug 2, 2016, 2:24:49 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26997
- Property Severity Normal → Release blocker
- Property Triage Stage Unreviewed → Accepted
-
Ticket #26997 – Description
initial v3 1 1 While trying to port project to django 1.10 I found an error. 2 2 If Meta of model has default_permissions = () django crashes on runserver, makemigrations and all other commands. 3 Test project can is located https://github.com/hellpain/django_default_permissions_bug/blob/master/foo_app/models.py 3 Test project can is located at 4 [https://github.com/hellpain/django_default_permissions_bug/] 5 Example of corrupted model: 6 [https://github.com/hellpain/django_default_permissions_bug/blob/master/foo_app/models.py] 4 7 5 8 This bug is caused to refactored checks in contrib.auth 9 10 PR to fix bug: [https://github.com/django/django/pull/7007]