summaryrefslogtreecommitdiffstats
path: root/commands/import_jekyll.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-12-23 10:40:32 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-12-23 16:33:21 +0100
commita5744697971d296eb973e04e4259fe9e516b908f (patch)
tree488ed37ebfc8916b5cfcdaade249884aec7105c3 /commands/import_jekyll.go
parent822dc627a1cfdf1f97882f27761675ac6ace7669 (diff)
Add CSV support to transform.Unmarshal
Fixes #5555
Diffstat (limited to 'commands/import_jekyll.go')
-rw-r--r--commands/import_jekyll.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/import_jekyll.go b/commands/import_jekyll.go
index 6a708ac06..d3301b48f 100644
--- a/commands/import_jekyll.go
+++ b/commands/import_jekyll.go
@@ -257,7 +257,7 @@ func (i *importCmd) loadJekyllConfig(fs afero.Fs, jekyllRoot string) map[string]
return nil
}
- c, err := metadecoders.UnmarshalToMap(b, metadecoders.YAML)
+ c, err := metadecoders.Default.UnmarshalToMap(b, metadecoders.YAML)
if err != nil {
return nil