Development of an internal social media platform with personalised dashboards for students
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 477B

12345678910111213141516
  1. from __future__ import absolute_import
  2. SOUTH_ERROR_MESSAGE = """
  3. For South support, customize the SOUTH_MIGRATION_MODULES setting
  4. to point to the correct migrations module:
  5. SOUTH_MIGRATION_MODULES = {
  6. 'kombu_transport_django': 'kombu.transport.django.south_migrations',
  7. }
  8. """
  9. try:
  10. from django.db import migrations # noqa
  11. except ImportError:
  12. from django.core.exceptions import ImproperlyConfigured
  13. raise ImproperlyConfigured(SOUTH_ERROR_MESSAGE)