diff options
Diffstat (limited to 'rpki/gui')
-rw-r--r-- | rpki/gui/decorators.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rpki/gui/decorators.py b/rpki/gui/decorators.py index d197acff..75efeae0 100644 --- a/rpki/gui/decorators.py +++ b/rpki/gui/decorators.py @@ -28,7 +28,6 @@ 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: |