jpwatts / django-positions

A Django field for custom model ordering.
BSD 3-Clause "New" or "Revised" License
284 stars 71 forks source link

Failing test for multi-table inheritance usage #18

Closed danxshap closed 11 years ago

danxshap commented 11 years ago

This is related to the discussion in #17

danxshap commented 11 years ago

@jpwatts I think the issue is that the post_save signal is being connected to the Task super class since that's where the position field is defined. So saving a Lesson or an Exercise doesn't fire update_on_save, which is a problem.