commit efc4c9a5a455c4ec1da82d727d2eb7582892411b Author: Ondrej Lichtner olichtne@redhat.com Date: Fri Oct 24 15:07:36 2014 +0200
lnst-ctl: fix long options
Long options that require an argument should end with '='.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com Signed-off-by: Jiri Pirko jiri@resnulli.us
lnst-ctl | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) --- diff --git a/lnst-ctl b/lnst-ctl index 6a0e924..9d72503 100755 --- a/lnst-ctl +++ b/lnst-ctl @@ -154,17 +154,17 @@ def main(): sys.argv[1:], "A:a:c:dhmoprs:t:ux:", [ - "override_alias", - "define_alias", - "config", + "override_alias=", + "define_alias=", + "config=", "debug", "help", "no-colours", "disable-pool-checks", "packet-capture", "reduce-sync", - "xslt-url", - "html", + "xslt-url=", + "html=", "multi-match", "result=", ]
lnst-developers@lists.fedorahosted.org