Updates:
Summary: Command line arguments turned into lower case when using '--option=Value' format instead of '--option Value'
        Status: Accepted
        Owner: pekka.klarck
        Labels: Target-2.1.2

Comment #3 on issue 410 by pekka.klarck: Command line arguments turned into lower case when using '--option=Value' format instead of '--option Value'
http://code.google.com/p/robotframework/issues/detail?id=410

The problem is actually on argument parsing. If you try

    pybot --outputdir /tmp/Report junk.tsv

instead of

   pybot --outputdir=/tmp/Report junk.tsv

everything should work right.

Arguments are turned into lower case before processing further them to support both --outputdir and --OutputDir formats (the latter is useful with even longer options like --SuiteStatLevel). When using the format with '=' the actual option value is
accidentally turned into lower case too.


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

Reply via email to