diff options
Diffstat (limited to 'rpki/fields.py')
-rw-r--r-- | rpki/fields.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rpki/fields.py b/rpki/fields.py index 3d859aaa..1ca6c893 100644 --- a/rpki/fields.py +++ b/rpki/fields.py @@ -24,12 +24,16 @@ the only sane text representation would just be the Base64 encoding of the DER and thus would add no value. """ +import logging + from django.db import models from south.modelsinspector import add_introspection_rules import rpki.x509 import rpki.sundial +logger = logging.getLogger(__name__) + class EnumField(models.PositiveSmallIntegerField): """ |