From 67e1e622ce69e0644ce5050e141a2f1047109a85 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Thu, 6 Aug 2015 08:41:17 -0400 Subject: [PATCH] fix indentation error in docstring Signed-off-by: Alfredo Deza (cherry picked from commit af973259eff9ffbbbe9aa209c3b3dd2d80d7219b) --- tasks/multibench.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/multibench.py b/tasks/multibench.py index bc22b470593d4..13b5ffe2cf854 100644 --- a/tasks/multibench.py +++ b/tasks/multibench.py @@ -36,7 +36,7 @@ def task(ctx, config): "please list clients to run on" def run_one(num): - """Run test spawn from gevent""" + """Run test spawn from gevent""" start = time.time() benchcontext = copy.copy(config.get('radosbench')) iterations = 0 @@ -48,7 +48,7 @@ def task(ctx, config): iterations += 1 log.info("Starting %s threads"%(str(config.get('segments', 3)),)) segments = [ - gevent.spawn(run_one, i) + gevent.spawn(run_one, i) for i in range(0, int(config.get('segments', 3)))] try: -- 2.39.5