Change keywords short option to 'y' from 'k' which was already taken by the check...
authorfuzzyray <fuzzyray@gentoo.org>
Mon, 15 Nov 2010 23:56:17 +0000 (23:56 -0000)
committerfuzzyray <fuzzyray@gentoo.org>
Mon, 15 Nov 2010 23:56:17 +0000 (23:56 -0000)
svn path=/trunk/gentoolkit/; revision=849

pym/gentoolkit/equery/__init__.py
pym/gentoolkit/test/equery/test_init.py

index 6fcdd02805cf0a91c63ba279e950ffdd073b67d4..e25ec544e9ece4fb7acad7497833990a3d8956ec 100644 (file)
@@ -54,7 +54,7 @@ NAME_MAP = {
        'f': 'files',
        'h': 'hasuse',
        'l': 'list_',
-       'k': 'keywords',
+       'y': 'keywords',
        'a': 'has',
        'm': 'meta',
        's': 'size',
@@ -95,7 +95,7 @@ def print_help(with_description=True):
                (" (f)iles", "list all files installed by PKG"),
                (" h(a)s", "list all packages for matching ENVIRONMENT data stored in /var/db/pkg"),
                (" (h)asuse", "list all packages that have USE flag"),
-               (" (k)keywords", "display keywords for specified PKG"),
+               (" ke(y)words", "display keywords for specified PKG"),
                (" (l)ist", "list package matching PKG"),
                (" (m)eta", "display metadata about PKG"),
                (" (s)ize", "display total size of all files owned by PKG"),
index 31da63508ce5bc11b4cb012267c35e0426f573d5..520b97d99e199e50f172aaf3443a63a06ca265c0 100644 (file)
@@ -25,6 +25,7 @@ class TestEqueryInit(unittest.TestCase):
                        'g': 'depgraph',
                        'f': 'files',
                        'h': 'hasuse',
+                       'y': 'keywords',
                        'l': 'list_',
                        'm': 'meta',
                        's': 'size',