From 5ed493c6e6d9252e7738a29bf9753d46a75bea41 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Fri, 4 Oct 2013 14:13:37 +0530 Subject: [PATCH] pep8: fix recent pep8 violations Signed-off-by: Prasanna Santhanam --- tools/marvin/marvin/deployAndRun.py | 22 +++++++++++++--------- tools/marvin/marvin/deployDataCenter.py | 4 ++-- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/tools/marvin/marvin/deployAndRun.py b/tools/marvin/marvin/deployAndRun.py index d162fb39685..8a758a10e36 100644 --- a/tools/marvin/marvin/deployAndRun.py +++ b/tools/marvin/marvin/deployAndRun.py @@ -73,20 +73,24 @@ if __name__ == "__main__": n = 0 while(n < iterates): engine = \ - TestCaseExecuteEngine.TestCaseExecuteEngine(deploy.testClient, - deploy.getCfg(), - testCaseLogFile, - testResultLogFile) + TestCaseExecuteEngine.TestCaseExecuteEngine( + deploy.testClient, + deploy.getCfg( + ), + testCaseLogFile, + testResultLogFile) engine.loadTestsFromFile(options.module) engine.run() n = n + 1 else: n = 0 - while(n