Skip to content

Commit 00b7d81

Browse files
caberoscaberos
authored andcommitted
fix the team code review comments
1 parent 666a86c commit 00b7d81

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

SoftLayer/CLI/vlan/create_options.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
@click.command(short_help="Get options to use for creating Vlan servers.")
1212
@environment.pass_env
1313
def cli(env):
14-
"""Vlan order options."""
14+
"""List all the options for creating VLAN"""
1515

1616
mgr = SoftLayer.NetworkManager(env.client)
1717
datacenters = mgr.get_list_datacenter()
1818

19-
table = formatting.Table(['name', 'Value'], title="Datacenters")
20-
router_table = formatting.Table(['datacenter', 'hostname'])
19+
table = formatting.Table(['Options', 'Value'], title="Datacenters")
20+
router_table = formatting.Table(['Datacenter', 'Router/Pod'])
2121
dc_table = formatting.Table(['Datacenters'])
2222
table.add_row(['VLAN type', 'Private, Public'])
2323

SoftLayer/managers/network.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,6 @@ def get_list_datacenter(self):
800800
def get_routers(self, identifier):
801801
"""Calls SoftLayer_Location::getRouters()
802802
803-
returns all routers locations.
804-
"""
803+
returns all routers locations.
804+
"""
805805
return self.client.call('SoftLayer_Location_Datacenter', 'getHardwareRouters', id=identifier)

0 commit comments

Comments
 (0)