Replaced leading spaces with tabs.

This commit is contained in:
David Sissitka 2013-09-11 01:07:05 -07:00
Родитель 07324a37eb
Коммит 33e4d73629
1 изменённых файлов: 2 добавлений и 2 удалений

4
api.go
Просмотреть файл

@ -311,9 +311,9 @@ func getContainersJSON(srv *Server, version float64, w http.ResponseWriter, r *h
outs2 = append(outs2, ctnr.ToLegacy())
}
return writeJSON(w, http.StatusOK, outs2)
return writeJSON(w, http.StatusOK, outs2)
} else {
return writeJSON(w, http.StatusOK, outs)
return writeJSON(w, http.StatusOK, outs)
}
}