summaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2014-06-28 12:22:29 -0500
committerDan McGee <dan@archlinux.org>2014-09-01 18:26:05 -0500
commit5232b186dc44fc053adfcbd3860a4b33da399232 (patch)
treefe5dc38bceeab6fc2859cbfda74e67da52b09cc5 /devel
parent51d90e23c9237772a2c327a7fe518d5554532861 (diff)
downloadarchweb-5232b186dc44fc053adfcbd3860a4b33da399232.tar.gz
archweb-5232b186dc44fc053adfcbd3860a4b33da399232.zip
Remove dependency on South
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'devel')
-rw-r--r--devel/fields.py2
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}$',