diff options
Diffstat (limited to 'rpki/gui/decorators.py')
-rw-r--r-- | rpki/gui/decorators.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rpki/gui/decorators.py b/rpki/gui/decorators.py index 75efeae0..d197acff 100644 --- a/rpki/gui/decorators.py +++ b/rpki/gui/decorators.py @@ -28,6 +28,7 @@ def tls_required(f): Decorator which returns a 500 error if the connection is not secured with TLS (https). """ + """ def _tls_required(request, *args, **kwargs): if not request.is_secure() and not _allow_plain_http_for_testing: |