From e6833f39890ca25c71acc54ad4e1ef11afcaeb74 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Fri, 26 Feb 2016 22:22:00 -0800 Subject: [PATCH] and comma-separated in --verbose mode, too --- tldp/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tldp/driver.py b/tldp/driver.py index d2cb8ff..5058557 100644 --- a/tldp/driver.py +++ b/tldp/driver.py @@ -52,7 +52,7 @@ def status(config, args): s = '{0:{w.status}} {1:{w.count}} '.format(status, count, w=width) print(s, end="") if config.verbose: - print('\t'.join(getattr(i, status).keys())) + print(', '.join(getattr(i, status).keys())) else: abbrev = getattr(i, status).keys() s = ''