From 305cc402de2081e1219b4d0457b247ec0fdfb416 Mon Sep 17 00:00:00 2001 From: Paul Varner Date: Fri, 24 Aug 2012 10:51:56 -0500 Subject: [PATCH] Strip initial whitespace at the start of the description (Bug 432530). --- pym/gentoolkit/equery/uses.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pym/gentoolkit/equery/uses.py b/pym/gentoolkit/equery/uses.py index 08ff585..8837e02 100644 --- a/pym/gentoolkit/equery/uses.py +++ b/pym/gentoolkit/equery/uses.py @@ -94,6 +94,11 @@ def display_useflags(output): flag_name += " " + color[in_makeconf](flag.ljust(maxflag_len)) flag_name += " : " + # Strip initial whitespace at the start of the description + # Bug 432530 + if desc: + desc = desc.lstrip() + # print description if restrict: restrict = "(%s %s)" % (pp.emph("Restricted to"), -- 2.26.2