From: Bjørn Erik Pedersen Date: Wed, 23 Mar 2016 08:45:18 +0000 (+0100) Subject: helpers: Remove the else in MakePathSanitized X-Git-Tag: v0.16~184 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6ff2e1db;p=brevno-suite%2Fhugo helpers: Remove the else in MakePathSanitized --- diff --git a/helpers/path.go b/helpers/path.go index 1ac5a87d..69f10880 100644 --- a/helpers/path.go +++ b/helpers/path.go @@ -81,9 +81,8 @@ func MakePath(s string) string { func MakePathSanitized(s string) string { if viper.GetBool("DisablePathToLower") { return MakePath(s) - } else { - return strings.ToLower(MakePath(s)) } + return strings.ToLower(MakePath(s)) } func MakeTitle(inpath string) string {