Skip to content

Commit

Permalink
corrected network interface output
Browse files Browse the repository at this point in the history
  • Loading branch information
purehyperbole committed May 3, 2017
1 parent dc391fa commit 37ce5ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c_network_interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func (n *NetworkInterface) getSingleDetail(c component, prefix string) (lines []
lines = append(lines, Message{Body: " " + name, Level: level})
id, _ := c["id"].(string)
if id != "" {
lines = append(lines, Message{Body: " AWS ID : " + id, Level: ""})
lines = append(lines, Message{Body: " ID : " + id, Level: ""})
}
if status != "" {
lines = append(lines, Message{Body: " Status : " + status, Level: ""})
Expand Down

0 comments on commit 37ce5ee

Please sign in to comment.