summaryrefslogtreecommitdiff
path: root/mirrors/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 /mirrors/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 'mirrors/fields.py')
-rw-r--r--mirrors/fields.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/mirrors/fields.py b/mirrors/fields.py
index 206c9d7d..e8963edf 100644
--- a/mirrors/fields.py
+++ b/mirrors/fields.py
@@ -4,7 +4,6 @@ from django import forms
from django.core import validators
from django.core.exceptions import ValidationError
from django.db import models
-from south.modelsinspector import add_introspection_rules
class IPNetworkFormField(forms.Field):
@@ -44,6 +43,3 @@ class IPNetworkField(models.Field):
defaults = {'form_class': IPNetworkFormField}
defaults.update(kwargs)
return super(IPNetworkField, self).formfield(**defaults)
-
-
-add_introspection_rules([], ["^mirrors\.fields\.IPNetworkField"])