/bangkokhotel/lib/python2.5/site-packages/south/introspection_plugins/annoying_autoonetoone.py
Python | 11 lines | 9 code | 1 blank | 1 comment | 4 complexity | 9057b6652e621cfc8f4dff07f8850969 MD5 | raw file
1from django.conf import settings
2from south.modelsinspector import add_introspection_rules
3
4if 'annoying' in settings.INSTALLED_APPS:
5 try:
6 from annoying.fields import AutoOneToOneField
7 except ImportError:
8 pass
9 else:
10 #django-annoying's AutoOneToOneField is essentially a OneToOneField.
11 add_introspection_rules([], ["^annoying\.fields\.AutoOneToOneField"])