diff options
Diffstat (limited to 'dump.go')
| -rw-r--r-- | dump.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ func dumpCluster(w http.ResponseWriter) { func dumpDroplets(w http.ResponseWriter, full bool) { loop := me.cluster.DropletsAll() // get the list of droplets for loop.Scan() { - d := loop.Droplet() + d := loop.Next() // this line in golang could replace 80 lines of COBOL header := d.SprintDumpHeader() + " " |
