summaryrefslogtreecommitdiff
path: root/bin
diff options
authorJeff Lane <jeffrey.lane@canonical.com>2017-08-16 11:40:39 -0400
committerJeff Lane <jeffrey.lane@canonical.com>2017-08-16 11:40:39 -0400
commitad65e0edac6a08b672a2a636ea449f52c96c8dff (patch)
tree7cb6c98a7c9b82f5d2973b7c9ec670c816b2c4aa /bin
parent1cbb3c3c1c9e46d2d0468e951acc8edcd15ce9aa (diff)
Cleaned up the network_info script output just a bit, it was running entries together making them confusing to read when there are multiple NICs involved. lp: #1711156
Diffstat (limited to 'bin')
-rwxr-xr-xbin/network_info4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/network_info b/bin/network_info
index 38d5ada..7dbe609 100755
--- a/bin/network_info
+++ b/bin/network_info
@@ -84,8 +84,8 @@ def main(args):
print("IPv6: n/a")
except:
print("IPv6: n/a")
- print("MAC: %s\n" % get_mac_address(interface))
- print("Connect Speed: %s" % get_speed(interface))
+ print("MAC: %s" % get_mac_address(interface))
+ print("Connect Speed: %s\n" % get_speed(interface))
return 0