diff options
author | Rob Austein <sra@hactrn.net> | 2015-10-08 03:08:37 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-10-08 03:08:37 +0000 |
commit | e011d9cf24895b1465ce2adbcd94981360b5f7af (patch) | |
tree | efe79ccf4ca4bcb966ac048ed0d1c121a3f0d38f /rpki/x509.py | |
parent | 9aa4f71e89de9e9189571c68ba1589024f77d71a (diff) |
Upgrade to new way of doing WSGI. Silence ten zillion deprecation
warnings: Django 1.8 has a really obscure way of saying "Please don't
import your models into your apps' __init__.py files, thanks."
svn path=/branches/tk705/; revision=6101
Diffstat (limited to 'rpki/x509.py')
-rw-r--r-- | rpki/x509.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rpki/x509.py b/rpki/x509.py index 686ddf88..34cf6726 100644 --- a/rpki/x509.py +++ b/rpki/x509.py @@ -822,7 +822,6 @@ class X509(DER_object): assert sia is not None or not is_ca if sia is not None: - logger.debug("_issue() sia: %r", sia) caRepository, rpkiManifest, signedObject, rpkiNotify = sia cert.setSIA( (caRepository,) if isinstance(caRepository, str) else caRepository, |