From 78fc750a027dcd745bac03ddb2d88a1e6d36ee62 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 21 Feb 2011 13:12:29 -0500 Subject: [PATCH] new-style classes, not self-instantiating --- convore/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convore/models.py b/convore/models.py index dde7faf..6b749e8 100644 --- a/convore/models.py +++ b/convore/models.py @@ -75,7 +75,7 @@ class Group(object): return '' % (self.slug) -class Category(self): +class Category(object): def __init__(self): pass