summaryrefslogtreecommitdiff
path: root/devel/fields.py
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-10-02 20:52:06 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-10-02 20:52:06 -0400
commitdceadbebbe0b196278573ed294be8c631d45ecef (patch)
tree5274fc4e0397a705dcf1d488074bea9503b3f2c7 /devel/fields.py
parent724f8c309c97aa9af7f963687342e8f37e682204 (diff)
parent355087ebe2e3fbd5f860e4655888a89d9df52e34 (diff)
Merge branch 'master-nomake'
Diffstat (limited to 'devel/fields.py')
-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}$',