File: errors.py

package info (click to toggle)
django-webpack-loader 0.6.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 196 kB
  • sloc: python: 256; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
from django.core.checks import Error


BAD_CONFIG_ERROR = Error(
    'Error while parsing WEBPACK_LOADER configuration',
    hint='Is WEBPACK_LOADER config valid?',
    obj='django.conf.settings.WEBPACK_LOADER',
    id='django-webpack-loader.E001',
)