diff options
Diffstat (limited to 'pym')
| -rw-r--r-- | pym/gentoolkit/equery/uses.py | 5 |
1 files changed, 5 insertions, 0 deletions
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"), |
