From 8be60b1580de638d2c9151646cb42b78b5f229ae Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Mon, 3 Jul 2017 14:11:02 +0100 Subject: Small fix in paste.Retireve() (wrong visualisation...) --- paste/paste.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paste/paste.go b/paste/paste.go index a55a3b3..0848d0c 100644 --- a/paste/paste.go +++ b/paste/paste.go @@ -61,7 +61,7 @@ func Retrieve(URI string) (title, date, content string, err error) { stuff.Scan() date = strings.Trim(strings.Join(strings.Split(stuff.Text(), ":")[1:], ":"), " ") for stuff.Scan() { - content += stuff.Text() + content += stuff.Text() + "\n" } } else { -- cgit v1.2.3