diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-08 02:17:47 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-08 02:17:47 +0000 |
commit | 9aa4f71e89de9e9189571c68ba1589024f77d71a (patch) | |
tree | 3be02352f5ca4b3816b44246c294ddfa7c176e05 /rpki/gui/models.py | |
parent | 3284d6687e0712cb78536be126d461833899e618 (diff) |
Initial sorta-mostly-working with Django 1.8. Incredibly noisy due to
incomprehensible advance depreciation warnings for Django 1.9.
svn path=/branches/tk705/; revision=6100
Diffstat (limited to 'rpki/gui/models.py')
-rw-r--r-- | rpki/gui/models.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/rpki/gui/models.py b/rpki/gui/models.py index 62400d2a..ced14926 100644 --- a/rpki/gui/models.py +++ b/rpki/gui/models.py @@ -22,7 +22,6 @@ from django.db import models import rpki.resource_set import rpki.POW -from south.modelsinspector import add_introspection_rules class IPv6AddressField(models.Field): @@ -63,14 +62,6 @@ class IPv4AddressField(models.Field): def get_db_prep_value(self, value, connection, prepared): return long(value) -add_introspection_rules( - [ - ([IPv4AddressField, IPv6AddressField], [], {}) - ], - [r'^rpki\.gui\.models\.IPv4AddressField', - r'^rpki\.gui\.models\.IPv6AddressField'] -) - class Prefix(models.Model): """Common implementation for models with an IP address range. |