/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
- from django.conf import settings
- from south.modelsinspector import add_introspection_rules
- if 'annoying' in settings.INSTALLED_APPS:
- try:
- from annoying.fields import AutoOneToOneField
- except ImportError:
- pass
- else:
- #django-annoying's AutoOneToOneField is essentially a OneToOneField.
- add_introspection_rules([], ["^annoying\.fields\.AutoOneToOneField"])