Browse Source

add missing string variable in log statement in export.go + go fmt

pull/111/head
Rob Loranger 5 years ago
parent
commit
3986c8eec1
No known key found for this signature in database GPG Key ID: D6F1633A4F0903B8
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      export.go

+ 3
- 2
export.go View File

@@ -14,9 +14,10 @@ import (
"archive/zip"
"bytes"
"encoding/csv"
"github.com/writeas/web-core/log"
"strings"
"time"

"github.com/writeas/web-core/log"
)

func exportPostsCSV(u *User, posts *[]PublicPost) []byte {
@@ -37,7 +38,7 @@ func exportPostsCSV(u *User, posts *[]PublicPost) []byte {
w := csv.NewWriter(&b)
w.WriteAll(r) // calls Flush internally
if err := w.Error(); err != nil {
log.Info("error writing csv:", err)
log.Info("error writing csv: %v", err)
}

return b.Bytes()


Loading…
Cancel
Save