Changes between Initial Version and Version 3 of Ticket #26186
- Timestamp:
- Feb 9, 2016, 12:23:46 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26186 – Description
initial v3 16 16 class Meta: 17 17 abstract = True 18 }}} 18 19 20 '''app_A/models.py:''' 21 22 {{{ 23 from .abstract import AbstractModel1, AbstractModel12 19 24 20 25 class Model1(AbstractModel1): … … 30 35 31 36 {{{ 32 from app_A. modelsimport AbstractModel1, AbstractModel237 from app_A.abstract import AbstractModel1, AbstractModel2 33 38 34 39 class Model1(AbstractModel1): … … 40 45 41 46 in Django 1.8, the `app_B.Model2.model1` would point to `app_B.Model1`, but in Django 1.9.2 it points to `app_A.Model1` so my code no longer works. 47 48 49 Test case can be found: https://github.com/skyjur/django-ticketing/tree/master/ticket_26186