Sfoglia il codice sorgente

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

pull/111/head
Rob Loranger 5 anni fa
parent
commit
3986c8eec1
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: D6F1633A4F0903B8
1 ha cambiato i file con 3 aggiunte e 2 eliminazioni
  1. +3
    -2
      export.go

+ 3
- 2
export.go Vedi 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()


Caricamento…
Annulla
Salva