From: Garming Sam Date: Mon, 10 Apr 2017 02:40:20 +0000 (+1200) Subject: samba-tool/spn: Add a missing newline to error message X-Git-Tag: ldb-1.1.30~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df2b71d1dbf14f79ee9a81585d710f3db832d83d;p=thirdparty%2Fsamba.git samba-tool/spn: Add a missing newline to error message Signed-off-by: Garming Sam Reviewed-by: Andrew Bartlett --- 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)