mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
strip the trailing whitespace from fedora
This commit is contained in:
parent
b199930ea2
commit
c8d11dc9e0
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ def main(openssl_version, apache_version):
|
|||
with open(conf_file_location) as f:
|
||||
contents = f.read()
|
||||
if tuple(apache_version.split(".")) < (2, 4, 11) or \
|
||||
LooseVersion(openssl_version) < LooseVersion('1.0.2l'):
|
||||
LooseVersion(openssl_version.strip()) < LooseVersion('1.0.2l'):
|
||||
# should be old version
|
||||
# assert SSLSessionTickets not in conf file
|
||||
if "SSLSessionTickets" in contents:
|
||||
|
|
|
|||
Loading…
Reference in a new issue