summaryrefslogtreecommitdiff
path: root/devel/fields.py
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-10-02 20:43:56 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-10-02 20:43:56 -0400
commit355087ebe2e3fbd5f860e4655888a89d9df52e34 (patch)
treed01f6206a2f2d054d4d1931019f5ba2a248fe982 /devel/fields.py
parentae785343076fd1fe8b89f69ca370f7fcd0cdcbd4 (diff)
parentea00a099dffd7157c93af54b5817734348d2bbc6 (diff)
Merge branch 'archweb-generic' into master-nomake
Conflicts: templates/public/download.html templates/public/feeds.html templates/public/index.html urls.py
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}$',