losee
losee

Reputation: 2238

I am getting weird error in my django app

I am trying to use Django dynamic scraper in my app and when I try to run the server I get this error message

RuntimeError: Model class dynamic_scraper.models.ScrapedObjClass doesn't declare an explicit app_label and isn't in an application in INSTALLED_APPS.

but I have this in my installed apps

dynamic_scraper

What seems to be the issue?

EDIT

    INSTALLED_APPS = (
      'django.contrib.admin',
      'django.contrib.auth',
      'django.contrib.contenttypes',
      'django.contrib.sessions',
      'django.contrib.messages',
      'django.contrib.staticfiles',

      # local
      'blog',

      # Third party
      'crispy_forms',
      'taggit',
      'haystack',
      'whoosh',
      'pagedown',
      'markdown_deux',
      'dynamic_scraper'
  )

Upvotes: 0

Views: 113

Answers (0)

Related Questions