diff options
author | Bjørn Erik Pedersen <[email protected]> | 2016-10-24 21:33:11 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2016-10-24 21:33:11 +0200 |
commit | 333bb05512a484e8700430ca3b221deac06199b5 (patch) | |
tree | 7104c328d1b366178d472c43a94bd8b64b79a301 /hugolib/multilingual.go | |
parent | 5859c691ec988f1617d43a3f4ab5d4ac766f73a2 (diff) | |
download | hugo-333bb05512a484e8700430ca3b221deac06199b5.tar.gz hugo-333bb05512a484e8700430ca3b221deac06199b5.zip |
Remove now superfluous lowercasing
See #2615
See #1129
Diffstat (limited to 'hugolib/multilingual.go')
-rw-r--r-- | hugolib/multilingual.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hugolib/multilingual.go b/hugolib/multilingual.go index cf45e7233..29a2ea93a 100644 --- a/hugolib/multilingual.go +++ b/hugolib/multilingual.go @@ -83,7 +83,6 @@ func toSortedLanguages(l map[string]interface{}) (helpers.Languages, error) { for lang, langConf := range l { langsMap, err := cast.ToStringMapE(langConf) - helpers.ToLowerMap(langsMap) if err != nil { return nil, fmt.Errorf("Language config is not a map: %T", langConf) |