From 9a03ea056429460f056d82aafd3646def6a86c4e Mon Sep 17 00:00:00 2001 From: evildmp Date: Sat, 5 Jan 2013 23:20:39 +0000 Subject: [PATCH] minor readme corrections --- README | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README b/README index 90d853b..f04a5b9 100644 --- a/README +++ b/README @@ -37,7 +37,8 @@ have an inner Meta class that inherits from ``Sortable.Meta`` from adminsortable.models import Sortable class MySortableClass(Sortable): - class Meta(Sortable.Meta) + class Meta(Sortable.Meta): + pass title = models.CharField(max_length=50) @@ -56,7 +57,8 @@ even if that model does not inherit from Sortable: ... class Project(Sortable): - class Meta(Sortable.Meta) + class Meta(Sortable.Meta): + pass category = SortableForeignKey(Category) title = models.CharField(max_length=50)