diff options
author | Michael DeHaan <michael.dehaan@gmail.com> | 2012-02-28 01:40:56 -0500 |
---|---|---|
committer | Michael DeHaan <michael.dehaan@gmail.com> | 2012-02-28 01:40:56 -0500 |
commit | cc2d3e0f1aaadc3ec3592625f2413cbf589c0aaa (patch) | |
tree | df40226b7450e149cae1c7884c5928ca21e81827 /bin | |
parent | 7553981ca2b9a9f4b1af5e0b7faaf759dcf16b57 (diff) | |
download | ansible-cc2d3e0f1aaadc3ec3592625f2413cbf589c0aaa.tar.gz |
Fix my error from not removing this parameter
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ans-command | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ans-command b/bin/ans-command index 6db25dd345..04ebc82de0 100755 --- a/bin/ans-command +++ b/bin/ans-command @@ -30,7 +30,7 @@ from ansible.scripts import base_ans_parser, error_print def main(args): - parser = base_ans_parser(output_path=False) + parser = base_ans_parser() parser.usage = "ans-command [options] command-to-run" parser.add_option('-c', '--return-codes', dest='return_codes', action='store_true', |