From 3a0e5947c81105fb1f0b98887c452d94ac65d049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 15 Feb 2019 20:27:34 +0100 Subject: [PATCH] show id of dns records MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- cloudflare/fqdns.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloudflare/fqdns.py b/cloudflare/fqdns.py index aa921a6..5fc3368 100755 --- a/cloudflare/fqdns.py +++ b/cloudflare/fqdns.py @@ -15,8 +15,9 @@ def format_csv(record): ) def format_table(record): - return '{:1} {:>6} {:30} {:30}'.format( + return '{:1} {:>20} {:>6} {:30} {:30}'.format( ('P' if record['proxied'] else ''), + record['id'], record['type'], record['name'], record['content'],