diff options
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |