From eea4f62f0fb5a14eece79565145fb5589008c7e1 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Tue, 10 Oct 2017 14:41:59 -0700 Subject: Use new(er)-style string formatting, {} instead of {0} --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tasks.py') diff --git a/tasks.py b/tasks.py index 4ddeeee3..a45b4efc 100644 --- a/tasks.py +++ b/tasks.py @@ -21,7 +21,7 @@ def test(ctx, coverage=False, flags=""): env = dict(os.environ) if 'SSH_AUTH_SOCK' in env: del env['SSH_AUTH_SOCK'] - cmd = "{0} test.py {1}".format(runner, flags) + cmd = "{} test.py {}".format(runner, flags) ctx.run(cmd, pty=True, env=env, replace_env=True) -- cgit v1.2.1