From df2b71d1dbf14f79ee9a81585d710f3db832d83d Mon Sep 17 00:00:00 2001 From: Garming Sam Date: Mon, 10 Apr 2017 14:40:20 +1200 Subject: [PATCH] samba-tool/spn: Add a missing newline to error message Signed-off-by: Garming Sam Reviewed-by: Andrew Bartlett --- python/samba/netcmd/spn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/samba/netcmd/spn.py b/python/samba/netcmd/spn.py index 03d072ec9b6..001728cc651 100644 --- a/python/samba/netcmd/spn.py +++ b/python/samba/netcmd/spn.py @@ -67,8 +67,8 @@ class cmd_spn_list(Command): for e in spns: self.outf.write("\t %s\n" % e) else: - self.outf.write("User %s has no servicePrincipalName" % - res[0].dn) + self.outf.write("User %s has no servicePrincipalName\n" % + res[0].dn) else: raise CommandError("User %s not found" % user) -- 2.47.2