Skip to content

Commit

Permalink
Fixed problem after update gocsv package
Browse files Browse the repository at this point in the history
  • Loading branch information
liderman committed May 13, 2017
1 parent 010b43f commit b2a7e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kiwitaxi-api.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type LoggerInterface interface {

// NewKiwitaxiApi creates a new instance KiwitaxiApi.
func NewKiwitaxiApi(token string) *KiwitaxiApi {
gocsv.SetCSVReader(func(in io.Reader) *csv.Reader {
gocsv.SetCSVReader(func(in io.Reader) gocsv.CSVReader {
csvin := csv.NewReader(in)
csvin.Comma = '\t'
csvin.LazyQuotes = true
Expand Down

0 comments on commit b2a7e70

Please # to comment.