From b38aa9af6fa2061a170535c19f5704592b1f4629 Mon Sep 17 00:00:00 2001 From: Chris PeBenito Date: Thu, 15 Oct 2015 16:00:13 -0400 Subject: [PATCH] seinfo: clarify empty attribute expansion Use "empty attribute" instead of "empty set". --- seinfo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seinfo b/seinfo index c682d99..b3d5603 100755 --- a/seinfo +++ b/seinfo @@ -27,7 +27,7 @@ import logging def expand_attr(attr): """Render type and role attributes.""" items = "\n\t".join(sorted(str(i) for i in attr.expand())) - contents = items if items else "" + contents = items if items else "" return "{0}\n\t{1}".format(attr.statement(), contents) parser = argparse.ArgumentParser(