diff options
author | Göktürk Yüksek <gokturk@gentoo.org> | 2017-12-11 09:21:59 -0500 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2017-12-11 21:51:19 -0800 |
commit | 8eda4c13bee9c6a78b2489deec210c8b37375029 (patch) | |
tree | 56fc926983acd40fc8b26d848367536a488349dd | |
parent | ekeyword: Support sorting keywords without additional changes (diff) | |
download | gentoolkit-8eda4c13bee9c6a78b2489deec210c8b37375029.tar.gz gentoolkit-8eda4c13bee9c6a78b2489deec210c8b37375029.tar.bz2 gentoolkit-8eda4c13bee9c6a78b2489deec210c8b37375029.zip |
eclean: add the missing ')' in the help string of --package-namesgentoolkit-0.4.1
-rw-r--r-- | pym/gentoolkit/eclean/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/eclean/cli.py b/pym/gentoolkit/eclean/cli.py index d8c5bd2..7ffb596 100644 --- a/pym/gentoolkit/eclean/cli.py +++ b/pym/gentoolkit/eclean/cli.py @@ -120,7 +120,7 @@ def printUsage(_error=None, help=None): print( yellow(" -i, --interactive")+ " - ask confirmation before deletions", file=out) print( yellow(" -n, --package-names")+ - " - protect all versions (when --deep", file=out) + " - protect all versions (when --deep)", file=out) print( yellow(" -p, --pretend")+ " - only display what would be cleaned", file=out) print( yellow(" -q, --quiet")+ |