Skip to content

Commit

Permalink
Correct styling
Browse files Browse the repository at this point in the history
  • Loading branch information
g3kk0 committed May 30, 2017
1 parent 4b1b621 commit c58ae35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c_virtual_network.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ func (n *VirtualNetwork) Handle(subject string, c component, lines []Message) []
}

func (n *VirtualNetwork) getSingleDetail(c component, prefix string) (lines []Message) {
address_space := c["address_space"].([]interface{})
addressSpace := c["address_space"].([]interface{})
var netlist []string
for _, a := range address_space {
for _, a := range addressSpace {
netlist = append(netlist, a.(string))
}
networks := strings.Join(netlist, ", ")
Expand Down

0 comments on commit c58ae35

Please sign in to comment.