python - Cannot syncdb when trying to install django-chatrooms -


after following installation requirements in order django-chatrooms installed (found here: https://github.com/qubird/django-chatrooms/blob/master/readme.rst), time run python manage.py syncdb. upon running command, errors , following traceback returned:

creating tables ... traceback (most recent call last):   file "manage.py", line 20, in <module>     execute_from_command_line()   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 429, in execute_from_command_line     utility.execute()   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 379, in execute     self.fetch_command(subcommand).run_from_argv(self.argv)   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/core/management/base.py", line 191, in run_from_argv     self.execute(*args, **options.__dict__)   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/core/management/base.py", line 220, in execute     output = self.handle(*args, **options)   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/core/management/base.py", line 351, in handle     return self.handle_noargs(**options)   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/core/management/commands/syncdb.py", line 109, in handle_noargs     emit_post_sync_signal(created_models, verbosity, interactive, db)   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/core/management/sql.py", line 190, in emit_post_sync_signal     interactive=interactive, db=db)   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/dispatch/dispatcher.py", line 172, in send     response = receiver(signal=self, sender=sender, **named)   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/django/contrib/auth/management/__init__.py", line 30, in create_permissions     ctype = contenttype.objects.get_for_model(klass)   file "/home/kevin/documents/mysite-env/local/lib/python2.7/site-packages/polymorphic/__init__.py", line 27, in get_for_model     model = model._meta.concrete_model attributeerror: 'options' object has no attribute 'concrete_model' 

my project working beforehand, if can determine causing call, delighted. thanks!


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -