I ran into this problem as well.  The issue is that super() expects the
child class not the parent class (the documentation is wrong), so try
this:

super(DahlBookManager, self).get_query_set()......
instead of
super(Manager, self).get_query_set()

In addition, it wouldn't let me create the Manager sub-class enclosed
in my model, it had to be defined at the module level, eg:

BAD:
class MyModel(Model):
    class MyManager(Manager):
         pass
    objects = MyManager()

GOOD:
class MyManager(Manager):
    def get_query_set():

class MyModel(Model):
    objects = MyManager()


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to