summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-09-17 19:40:08 -0700
committerJeff Forcier <jeff@bitprophet.org>2018-09-17 19:40:08 -0700
commitf4664257250371bba7cf0c330a43b95570323bef (patch)
treef465634d5139ba64f8aee145eafb7ea0c41131ff /tasks.py
parent915b4551fe8b7c422e5fba1166ac8c8a4cc5b353 (diff)
downloadparamiko-f4664257250371bba7cf0c330a43b95570323bef.tar.gz
Minor cleanup
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 50b75762..3d2fdf65 100644
--- a/tasks.py
+++ b/tasks.py
@@ -40,7 +40,7 @@ def test(
# running headless? Probably?
if color:
opts += " --color=yes"
- opts += " --capture={0}".format(capture)
+ opts += " --capture={}".format(capture)
if "-m" not in opts and not include_slow:
opts += " -m 'not slow'"
if k is not None and not ("-k" in opts if opts else False):