Format go code.

This commit is contained in:
Benjamin Manns
2014-03-06 10:45:21 -08:00
parent 922993c258
commit baf468973f
6 changed files with 37 additions and 38 deletions

View File

@@ -514,7 +514,7 @@ func (b *Builder) writeProxyScript(dir string) error {
// map ip address to localhost
for _, container := range b.services {
// create an entry for each port
for port, _ := range container.NetworkSettings.Ports {
for port := range container.NetworkSettings.Ports {
proxyfile.Set(port.Port(), container.NetworkSettings.IPAddress)
}
}