print id of dns record first

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-02-16 14:38:03 +01:00
parent a6904f8f22
commit 8ca6a70258
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 2 additions and 2 deletions

View File

@ -15,9 +15,9 @@ def format_csv(record):
)
def format_table(record):
return '{:1} {:>20} {:>6} {:30} {:30}'.format(
('P' if record['proxied'] else ''),
return '{:>20} {:1} {:>6} {:30} {:30}'.format(
record['id'],
('P' if record['proxied'] else ''),
record['type'],
record['name'],
record['content'],