From: Joseph Sutton Date: Thu, 6 Jul 2023 03:56:38 +0000 (+1200) Subject: python:samba:kcc: Fix log message formatting X-Git-Tag: tevent-0.16.0~1197 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0efff68ceb5616343a5f5a68dc5b6d8fb71c8d1;p=thirdparty%2Fsamba.git python:samba:kcc: Fix log message formatting Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/kcc/__init__.py b/python/samba/kcc/__init__.py index 709b84909b6..22590d0c6c5 100644 --- a/python/samba/kcc/__init__.py +++ b/python/samba/kcc/__init__.py @@ -407,8 +407,8 @@ class KCC(object): nttime2unix(failed_link.time_first_failure) # TODO guard against future if unix_first_failure > self.unix_now: - logger.error("The last success time attribute for \ - repsFrom is in the future!") + logger.error("The last success time attribute for " + "repsFrom is in the future!") # Perform calculation in seconds if (self.unix_now - unix_first_failure) > 60 * 60 * 2: