aboutsummaryrefslogtreecommitdiffstats
path: root/modules/markup/csv/csv.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/markup/csv/csv.go')
-rw-r--r--modules/markup/csv/csv.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/markup/csv/csv.go b/modules/markup/csv/csv.go
index e4b423d4f0..c1d9d18b67 100644
--- a/modules/markup/csv/csv.go
+++ b/modules/markup/csv/csv.go
@@ -102,7 +102,7 @@ func (Renderer) Render(ctx *markup.RenderContext, input io.Reader, output io.Wri
return err
}
- rd, err := csv.CreateReaderAndGuessDelimiter(bytes.NewReader(rawBytes))
+ rd, err := csv.CreateReaderAndDetermineDelimiter(ctx, bytes.NewReader(rawBytes))
if err != nil {
return err
}