Allow file and directory names to contain percent character

This commit is contained in:
Vladimir Vissoultchev 2015-07-28 11:42:06 +03:00
parent 53bcf373c1
commit 167265d533
3 changed files with 4 additions and 4 deletions

View file

@ -178,7 +178,7 @@ var TemplateFuncs template.FuncMap = map[string]interface{}{
"Oauth2Name": Oauth2Name,
"ToUtf8": ToUtf8,
"EscapePound": func(str string) string {
return strings.Replace(str, "#", "%23", -1)
return strings.Replace(strings.Replace(str, "%", "%25", -1), "#", "%23", -1)
},
"RenderCommitMessage": RenderCommitMessage,
}