aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-07-18 23:26:33 +0100
committerSam James <sam@gentoo.org>2023-07-18 23:26:50 +0100
commit9eeff3399b23df1e4eed6f782e77c28b30347c9a (patch)
treee8326103b04ea1d7a0dc92c664737a6753b813d4
parentequery.1: Add description of 'keywords' module, fix typo. (diff)
downloadgentoolkit-9eeff339.tar.gz
gentoolkit-9eeff339.tar.bz2
gentoolkit-9eeff339.zip
equery: depgraph: Fix --linear shortopt (-l)
Closes: https://bugs.gentoo.org/709816 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--pym/gentoolkit/equery/depgraph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/equery/depgraph.py b/pym/gentoolkit/equery/depgraph.py
index 9003a47..d9e3901 100644
--- a/pym/gentoolkit/equery/depgraph.py
+++ b/pym/gentoolkit/equery/depgraph.py
@@ -197,7 +197,7 @@ def main(input_args):
"""Parse input and run the program"""
short_opts = "hAMUl"
- long_opts = ("help", "no-atom", "no-useflags", "no-mask", "depth=")
+ long_opts = ("help", "no-atom", "no-useflags", "no-mask", "depth=", "linear")
try:
module_opts, queries = gnu_getopt(input_args, short_opts, long_opts)