/bangkokhotel/lib/python2.5/site-packages/south/introspection_plugins/annoying_autoonetoone.py

https://bitbucket.org/luisrodriguez/bangkokhotel · Python · 11 lines · 9 code · 1 blank · 1 comment · 4 complexity · 9057b6652e621cfc8f4dff07f8850969 MD5 · raw file

  1. from django.conf import settings
  2. from south.modelsinspector import add_introspection_rules
  3. if 'annoying' in settings.INSTALLED_APPS:
  4. try:
  5. from annoying.fields import AutoOneToOneField
  6. except ImportError:
  7. pass
  8. else:
  9. #django-annoying's AutoOneToOneField is essentially a OneToOneField.
  10. add_introspection_rules([], ["^annoying\.fields\.AutoOneToOneField"])