--
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...@googlegroups.com.
To post to this group, send email to django...@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/2cb7ed54-35ab-4b0c-8d4d-5fb88071d097%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
| # Load app configs and app modules. for entry in installed_apps: if isinstance(entry, AppConfig): app_config = entry else: app_config = AppConfig.create(entry) if app_config.label in self.app_configs: import pdb; pdb.set_trace() print([ac.label for ac in installed_apps if isinstance(ac, AppConfig)]) print([str(ac) for ac in installed_apps if not isinstance(ac, AppConfig)]) raise ImproperlyConfigured( |
"Application labels aren't unique, " "duplicates: %s" % app_config.label) |
Hi Andrewthanks for your help but am still getting an error message:-
Traceback (most recent call last):
File "C:\Users\LENOVO\Documents\testsyntax.py", line 9, in <module>
"duplicates: %s" % app_config.label)
Exception: Application labels aren't unique, duplicates: herring