Fixed ISC002 (multi-line-implicit-string-concatenation): Implicitly concatenated string literals over multiple lines

This commit is contained in:
Teal Dulcet 2023-12-23 05:23:58 -08:00 committed by Joshua Tauberer
parent e466b9bb53
commit 7f456d8e8b
1 changed files with 3 additions and 3 deletions

View File

@ -488,9 +488,9 @@ def list_target_files(config):
elif 'Could not resolve hostname' in listing:
reason = f"The hostname {target.hostname} cannot be resolved."
else:
reason = "Unknown error." \
"Please check running 'management/backup.py --verify'" \
"from mailinabox sources to debug the issue."
reason = ("Unknown error."
"Please check running 'management/backup.py --verify'"
"from mailinabox sources to debug the issue.")
msg = f"Connection to rsync host failed: {reason}"
raise ValueError(msg)