diff options
author | Dan McGee <dan@archlinux.org> | 2014-06-28 12:22:29 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2014-09-01 18:26:05 -0500 |
commit | 5232b186dc44fc053adfcbd3860a4b33da399232 (patch) | |
tree | fe5dc38bceeab6fc2859cbfda74e67da52b09cc5 /devel/fields.py | |
parent | 51d90e23c9237772a2c327a7fe518d5554532861 (diff) |
Remove dependency on South
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'devel/fields.py')
-rw-r--r-- | devel/fields.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/devel/fields.py b/devel/fields.py index 606ca63c..dd22a92e 100644 --- a/devel/fields.py +++ b/devel/fields.py @@ -3,8 +3,6 @@ from django.core.validators import RegexValidator class PGPKeyField(models.CharField): - _south_introspects = True - def __init__(self, *args, **kwargs): super(PGPKeyField, self).__init__(*args, **kwargs) self.validators.append(RegexValidator(r'^[0-9A-F]{40}$', |