sick of this error... what to do?

antuptasMBP:New_Django vikrantgupta$ python manage.py migrate
Traceback (most recent call last):
  File "manage.py", line 15, in <module>
    execute_from_command_line(sys.argv)
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/django/core/management/__init__.py",
 
line 381, in execute_from_command_line
    utility.execute()
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/django/core/management/__init__.py",
 
line 357, in execute
    django.setup()
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/django/__init__.py",
 
line 24, in setup
    apps.populate(settings.INSTALLED_APPS)
  File 
"/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/django/apps/registry.py",
 
line 93, in populate
    "duplicates: %s" % app_config.label)
django.core.exceptions.ImproperlyConfigured: Application labels aren't 
unique, duplicates: Newtest

setting.py code for INSTALLED_apps is

INSTALLED_APPS = [
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'Newtest.apps.NewtestConfig',
    'Newtest',
]



Apps.py code , and 
How can I solve it? 

from django.apps import AppConfig


class NewtestConfig(AppConfig):
    name = 'Newtest'

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8a4c0484-6929-45d7-bbaa-a5a074ef4433%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to