summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--paste/paste.go2
1 files changed, 1 insertions, 1 deletions
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 {