You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 261B

123456789
  1. import warnings
  2. from django.utils.deprecation import RemovedInDjango30Warning
  3. warnings.warn(
  4. "The django.db.backends.postgresql_psycopg2 module is deprecated in "
  5. "favor of django.db.backends.postgresql.",
  6. RemovedInDjango30Warning, stacklevel=2
  7. )