burke-software / django-mass-edit

Make bulk changes in the Django admin interface
152 stars 67 forks source link

RemovedInDjango19Warning #49

Closed d33tah closed 8 years ago

d33tah commented 8 years ago
[root@e85a0fc40662 /]# /usr/lib64/python2.7/site-packages/django/contrib/admin/util.py:7: RemovedInDjango19Warning: The django.contrib.admin.util module has been renamed. Use django.contrib.admin.utils instead.
  "Use django.contrib.admin.utils instead.", RemovedInDjango19Warning)

Looks like massadmin.py references this.

d33tah commented 8 years ago

Also, I'm getting this one and it might be related to massadmin as well:

/usr/lib64/python2.7/site-packages/django/contrib/contenttypes/models.py:159: RemovedInDjango19Warning: Model class django.contrib.contenttypes.models.ContentType doesn't declare an explicit app_label and either isn't in an application in INSTALLED_APPS or else was imported before its application was loaded. This will no longer be supported in Django 1.9.
  class ContentType(models.Model):
bufke commented 8 years ago

The first issue was fixed already https://github.com/burke-software/django-mass-edit/commit/6cf29293cc1193ce3133c4eefb16e8b92ec411f2

I don't see any ContentType.app_label usage here. There is _meta.app_label but that looks valid.

Please reopen if I missed something here.