doesn't work with newer Django
File "....django-flag\flag\models.py", line 7, in
Sorry for the late response. django.contrib.contenttypes was deprecated with Django 1.7 and this app has not been updated in some time. Happy to accept assistance in updating, if you have the time and inclination. We have some info in our wiki about our most recent process.
https://github.com/pinax/pinax/wiki/Pinax-19.xx-Proposed-Process
seems like we replace that line with from django.contrib.contenttypes.fields import GenericForeignKey ?
from django.contrib.contenttypes.fields import GenericForeignKey
class FlaggedContent(models.Model):
...
content_object = GenericForeignKey('content_type', 'object_id')
I might submit a patch