You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to install django-friends for the first time, I get this error while running syncdb:
Traceback (most recent call last):
File "C:\dev\myfirsties\manage.py", line 11, in <module>
execute_manager(settings)
File "C:\dev\django\core\management\__init__.py", line 362, in execute_manager
utility.execute()
File "C:\dev\django\core\management\__init__.py", line 303, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "C:\dev\django\core\management\base.py", line 195, in run_from_argv
self.execute(*args, **options.__dict__)
File "C:\dev\django\core\management\base.py", line 222, in execute
output = self.handle(*args, **options)
File "C:\dev\django\core\management\base.py", line 351, in handle
return self.handle_noargs(**options)
File "C:\dev\django\core\management\commands\syncdb.py", line 99, in handle_noargs
emit_post_sync_signal(created_models, verbosity, interactive)
File "C:\dev\django\core\management\sql.py", line 205, in emit_post_sync_signal
interactive=interactive)
File "C:\dev\django\dispatch\dispatcher.py", line 166, in send
response = receiver(signal=self, sender=sender, **named)
File "C:\dev\django\contrib\auth\management\__init__.py", line 25, in create_permissions
ctype = ContentType.objects.get_for_model(klass)
File "C:\dev\django\contrib\contenttypes\models.py", line 31, in get_for_model
defaults = {'name': smart_unicode(opts.verbose_name_raw)},
File "C:\dev\django\db\models\manager.py", line 123, in get_or_create
return self.get_query_set().get_or_create(**kwargs)
File "C:\dev\django\db\models\query.py", line 335, in get_or_create
obj.save(force_insert=True)
File "C:\dev\django\db\models\base.py", line 410, in save
self.save_base(force_insert=force_insert, force_update=force_update)
File "C:\dev\django\db\models\base.py", line 506, in save_base
created=(not record_exists), raw=raw)
File "C:\dev\django\dispatch\dispatcher.py", line 166, in send
response = receiver(signal=self, sender=sender, **named)
File "C:\dev\friends\models.py", line 208, in new_user
if instance.verified:
AttributeError: 'ContentType' object has no attribute 'verified'
The text was updated successfully, but these errors were encountered:
When trying to install django-friends for the first time, I get this error while running syncdb:
The text was updated successfully, but these errors were encountered: