From d0a5f75405473a1dbf54112475eece69d87fdcb1 Mon Sep 17 00:00:00 2001 From: "Stephen McQuay (smcquay)" Date: Tue, 13 Sep 2016 09:29:52 -0700 Subject: [PATCH] missing newline on error messages --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index ca6d42d..259e968 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ func main() { for s.Scan() { pk, comment, _, _, err := ssh.ParseAuthorizedKey(s.Bytes()) if err != nil { - fmt.Fprintf(os.Stderr, "problem parsing pubkey from line %q: %v", s.Text(), err) + fmt.Fprintf(os.Stderr, "problem parsing pubkey from line %q: %v\n", s.Text(), err) continue } hsh := sha256.New()