From f8ef6764c0db6f870bd30add031af8744a47b31b Mon Sep 17 00:00:00 2001 From: Paul Tetreau Date: Thu, 16 Jul 2015 09:18:48 -0700 Subject: [PATCH] md formatting and fixed missing newline for when no ciphers are found --- lsciphers.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lsciphers.go b/lsciphers.go index 37fcc87..5a2f483 100644 --- a/lsciphers.go +++ b/lsciphers.go @@ -34,12 +34,12 @@ func main() { ciphers := list(target, bar) bar.End() bar.Erase() - fmt.Printf("%s:\n", target) + fmt.Printf("- %s\n", target) for _, cipher := range ciphers { - fmt.Printf(" %s\n", cipher) + fmt.Printf(" - %s\n", cipher) } if len(ciphers) == 0 { - fmt.Println("No ciphers matched.") + fmt.Println(" - No ciphers matched.\n") } } }