Format lxc_template.go with gofmt

This commit is contained in:
Tianon Gravi 2013-11-24 20:02:06 -07:00
parent f16c45f8b0
commit b702edadb7
1 changed files with 3 additions and 3 deletions

View File

@ -171,9 +171,9 @@ func getCapabilities(container *Container) *Capabilities {
func init() {
var err error
funcMap := template.FuncMap{
"getMemorySwap": getMemorySwap,
"getHostConfig": getHostConfig,
"getCapabilities": getCapabilities,
"getMemorySwap": getMemorySwap,
"getHostConfig": getHostConfig,
"getCapabilities": getCapabilities,
"escapeFstabSpaces": escapeFstabSpaces,
}
LxcTemplateCompiled, err = template.New("lxc").Funcs(funcMap).Parse(LxcTemplate)