浏览代码

Format lxc_template.go with gofmt

Tianon Gravi 11 年之前
父节点
当前提交
b702edadb7
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      lxc_template.go

+ 3 - 3
lxc_template.go

@@ -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)