pylint: fix implicit-str-concat

Related: https://pagure.io/freeipa/issue/9278

Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
Reviewed-By: Stanislav Levin <slev@altlinux.org>
This commit is contained in:
Florence Blanc-Renaud 2022-11-21 16:46:43 +01:00
parent 139038c58b
commit 2268ef4e3c
2 changed files with 2 additions and 2 deletions

View File

@ -397,7 +397,7 @@ class EPN(admintool.AdminTool):
"""
if api.env.smtp_security.lower() not in ("none", "starttls", "ssl"):
raise RuntimeError(
"smtp_security must be one of: " "none, starttls or ssl"
"smtp_security must be one of: none, starttls or ssl"
)
if api.env.smtp_user is not None and api.env.smtp_password is None:
raise RuntimeError("smtp_user set and smtp_password is not")

View File

@ -238,7 +238,7 @@ def fix_apache_semaphores(master):
raiseonerr=False)
master.run_command(
'for line in `ipcs -s | grep apache ''| cut -d " " -f 2`; '
'for line in `ipcs -s | grep apache ''| cut -d " " -f 2`; ' +
'do ipcrm -s $line; done', raiseonerr=False
)