Ticket #15857: contenttypes_auth.diff

File contenttypes_auth.diff, 505 bytes (added by Luc Saffre, 13 years ago)

Patch against rev. 15796

  • django/contrib/contenttypes/tests.py

     
    5959            "SERVER_PORT": "80",
    6060        }
    6161        from django.contrib.auth.models import User
     62        if not User._meta.installed: return
    6263        user_ct = ContentType.objects.get_for_model(User)
    6364        obj = User.objects.create(username="john")
    6465
Back to Top