We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8d34e5 commit 88eaa62Copy full SHA for 88eaa62
1 file changed
SoftLayer/CLI/modules/dns.py
@@ -102,7 +102,7 @@ def execute(self, args):
102
def list_zone(self, args):
103
manager = DNSManager(self.client)
104
t = Table([
105
- "id",
+ "id",
106
"record",
107
"type",
108
"ttl",
@@ -128,7 +128,7 @@ def list_zone(self, args):
128
129
for rr in records:
130
t.add_row([
131
- rr['id'],
+ rr['id'],
132
rr['host'],
133
rr['type'].upper(),
134
rr['ttl'],
0 commit comments