Skip to content

Instantly share code, notes, and snippets.

@apinsard
Created April 25, 2015 09:59
Show Gist options
  • Save apinsard/a899907841304cf1bafd to your computer and use it in GitHub Desktop.
Save apinsard/a899907841304cf1bafd to your computer and use it in GitHub Desktop.
stdin
Python 3.3.6 (default, Dec 10 2014, 19:08:56)
[GCC 4.8.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from accounts.models import *
>>> Professional.objects.all().delete()
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/home/tony/.virtualenvs/aladompy/lib/python3.3/site-packages/django/db/models/query.py", line 536, in delete
collector.collect(del_query)
File "/home/tony/.virtualenvs/aladompy/lib/python3.3/site-packages/django/db/models/deletion.py", line 233, in collect
sub_objs = field.bulk_related_objects(new_objs, self.using)
File "/home/tony/.virtualenvs/aladompy/lib/python3.3/site-packages/django/contrib/contenttypes/fields.py", line 379, in bulk_related_objects
return self.rel.to._base_manager.db_manager(using).filter(**{
AttributeError: 'str' object has no attribute '_base_manager'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment