diff options
author | Rob Austein <sra@hactrn.net> | 2014-09-23 02:06:00 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-09-23 02:06:00 +0000 |
commit | 8a8afa6f334f02ac67d4e8fe8ffc16be919bf302 (patch) | |
tree | a4eed07d17753cb39d76b06a06ba4cbc709d9aff /rpki/gui/decorators.py | |
parent | 8bf80a0bcf23c58d4bcd50f247aa7e1c571795ea (diff) |
Typo
svn path=/branches/tk705/; revision=5968
Diffstat (limited to 'rpki/gui/decorators.py')
-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: |