From: Alfredo Deza Date: Thu, 6 Aug 2015 12:41:17 +0000 (-0400) Subject: fix indentation error in docstring X-Git-Tag: v10.2.6~165^2^2~405^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=18bf415d1e2365cd9079aeef35c0895029542579;p=ceph.git fix indentation error in docstring Signed-off-by: Alfredo Deza (cherry picked from commit af973259eff9ffbbbe9aa209c3b3dd2d80d7219b) --- diff --git a/tasks/multibench.py b/tasks/multibench.py index bc22b470593d..13b5ffe2cf85 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: