Sunday, March 29, 2015

Upgrade to django 1.7- ImproperlyConfigured -Tastypie label duplicate? help

Hi,

 So I updated my django project from django 1.6 to 1.7.7 and when I run "python manage.py migrate" I get this error stating that I have a duplicate label.

Here's the traceback

  Creating tables...
 
Installing custom SQL...
 
Installing indexes...
Running migrations:
 
Applying tastypie.0001_initial...Traceback (most recent call last):
 
File "manage.py", line 11, in <module>
    execute_from_command_line
(sys.argv)
 
File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 385, in execute_from_command_line
    utility
.execute()
 
File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 377, in execute
   
self.fetch_command(subcommand).run_from_argv(self.argv)
 
File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 288, in run_from_argv
   
self.execute(*args, **options.__dict__)
 
File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 338, in execute
    output
= self.handle(*args, **options)
 
File "/usr/local/lib/python2.7/dist-packages/django/core/management/commands/migrate.py", line 161, in handle
    executor
.migrate(targets, plan, fake=options.get("fake", False))
 
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/executor.py", line 68, in migrate
   
self.apply_migration(migration, fake=fake)
 
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/executor.py", line 96, in apply_migration
   
if self.detect_soft_applied(migration):
 
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/executor.py", line 140, in detect_soft_applied
    apps
= project_state.render()
 
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/state.py", line 57, in render
   
self.apps = Apps([AppConfigStub(label) for label in sorted(self.real_apps + list(app_labels))])
 
File "/usr/local/lib/python2.7/dist-packages/django/apps/registry.py", line 56, in __init__
   
self.populate(installed_apps)
 
File "/usr/local/lib/python2.7/dist-packages/django/apps/registry.py", line 89, in populate
   
"duplicates: %s" % app_config.label)
django
.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: tastypie


Not sure what to do here. I remove tastypie from the list of INSTALLED_APPS in my settings and everything works fine. but I do need it. Any suggestions ?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/7e4cfbf8-d3e0-4e0e-a38c-b83930ffa3b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment