From 1d5bb5996e7df31aac746375a5cc24a91ee52d7e Mon Sep 17 00:00:00 2001 From: Douglas Bagnall Date: Tue, 23 Jun 2015 16:38:29 +1200 Subject: [PATCH] KCC: fix pep8 line length in load_ip_transport() You are right to sigh about this one. Signed-off-by: Douglas Bagnall Reviewed-by: Garming Sam Reviewed-by: Andrew Bartlett --- python/samba/kcc/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/python/samba/kcc/__init__.py b/python/samba/kcc/__init__.py index 615a996179..1d61c0e0c2 100644 --- a/python/samba/kcc/__init__.py +++ b/python/samba/kcc/__init__.py @@ -165,11 +165,12 @@ class KCC(object): if transport.name == 'IP': self.ip_transport = transport elif transport.name == 'SMTP': - logger.debug("Samba KCC is ignoring the obsolete SMTP transport.") + logger.debug("Samba KCC is ignoring the obsolete " + "SMTP transport.") else: - logger.warning("Samba KCC does not support the transport called %r." - % (transport.name,)) + logger.warning("Samba KCC does not support the transport " + "called %r." % (transport.name,)) if self.ip_transport is None: raise KCCError("there doesn't seem to be an IP transport") -- 2.34.1