Updated Branches: refs/heads/marvin_refactor [created] 2a9906424
fixing the argparser return vals Signed-off-by: Prasanna Santhanam <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/25981373 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/25981373 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/25981373 Branch: refs/heads/marvin_refactor Commit: 2598137370420adc31dfb62bbdb61863cbc9a679 Parents: a57cbfb Author: Prasanna Santhanam <[email protected]> Authored: Tue Mar 19 18:09:49 2013 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Sun Mar 31 22:00:35 2013 +0530 ---------------------------------------------------------------------- tools/marvin/marvin/deployAndRun.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/25981373/tools/marvin/marvin/deployAndRun.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/deployAndRun.py b/tools/marvin/marvin/deployAndRun.py index 54161eb..c83065a 100644 --- a/tools/marvin/marvin/deployAndRun.py +++ b/tools/marvin/marvin/deployAndRun.py @@ -31,7 +31,7 @@ if __name__ == "__main__": parser.add_argument("-l", "--load", dest="load", action="store_true", help="only load config, do not deploy, it will only run testcase") - (options, args) = parser.parse_args() + options = parser.parse_args() testResultLogFile = None if options.result is not None:
