Small fix in paste.Retireve() (wrong visualisation...)

master
KatolaZ 8 years ago
parent 8585d8ea44
commit 8be60b1580
  1. 2
      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 {

Loading…
Cancel
Save