From 385f99433bc9fd69bb8ce05e9a47e39496945ba6 Mon Sep 17 00:00:00 2001 From: Boulder Sprinters Date: Wed, 14 Mar 2007 23:04:08 +0000 Subject: boulder-oracle-sprint: Add in a few small trunk changes that svn merge had missed. git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@4729 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/basic/models.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/modeltests/basic') diff --git a/tests/modeltests/basic/models.py b/tests/modeltests/basic/models.py index 062f8b29ed..9af13c0e3e 100644 --- a/tests/modeltests/basic/models.py +++ b/tests/modeltests/basic/models.py @@ -9,8 +9,6 @@ from django.db import models class Article(models.Model): headline = models.CharField(maxlength=100, default='Default headline') pub_date = models.DateTimeField() - class Meta: - ordering = ('pub_date',) class Meta: ordering = ('pub_date','headline') -- cgit v1.3