From b2e01eec738828f026a9de71c64b7225b533b946 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Mon, 7 Mar 2016 22:12:59 -0800 Subject: [PATCH] removing useless vestiage --- tldp/driver.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tldp/driver.py b/tldp/driver.py index 4b030ef..8c6b2cf 100644 --- a/tldp/driver.py +++ b/tldp/driver.py @@ -98,8 +98,6 @@ def summary(config, *args, **kwargs): width.status = max([len(x) for x in status_types]) width.count = len(str(len(inv.source.keys()))) for status in status_types: - if status == 'all': - continue count = len(getattr(inv, status, 0)) s = '{0:{w.status}} {1:{w.count}} '.format(status, count, w=width) print(s, end="", file=file)