__init__.py 259 B

12345678
  1. import warnings
  2. warnings.warn(
  3. 'wtforms.ext.django is deprecated, and will be removed in WTForms 3.0. '
  4. 'The package has been split out into its own package, wtforms-django: '
  5. 'https://github.com/wtforms/wtforms-django',
  6. DeprecationWarning
  7. )