summaryrefslogtreecommitdiff
path: root/selftest/selftesthelpers.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-11-10 20:44:59 +0100
committerJelmer Vernooij <jelmer@samba.org>2011-11-10 23:37:04 +0100
commite0b8af57c43e3fcb0ed9485ac707761a04582a34 (patch)
treecc18cb117b96b0f0dba49a2236dda40a404b1b91 /selftest/selftesthelpers.py
parent0fcec8bfa0da647d478198a2b468951f230a9022 (diff)
downloadsamba-e0b8af57c43e3fcb0ed9485ac707761a04582a34.tar.gz
samba-e0b8af57c43e3fcb0ed9485ac707761a04582a34.tar.bz2
samba-e0b8af57c43e3fcb0ed9485ac707761a04582a34.zip
selftesthelpers: Fix syntax error.
Diffstat (limited to 'selftest/selftesthelpers.py')
-rw-r--r--selftest/selftesthelpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/selftesthelpers.py b/selftest/selftesthelpers.py
index c041c26f35..a7924d60f4 100644
--- a/selftest/selftesthelpers.py
+++ b/selftest/selftesthelpers.py
@@ -165,5 +165,5 @@ def planpythontestsuite(env, module, name=None, extra_path=[]):
"%s/lib/testtools" % srcdir()])
args = [python, "-m", "subunit.run", "$LISTOPT", module]
if pypath:
- args.insert(0, "PYTHONPATH=%s" % ":".join(["$PYTHONPATH"] + pypath]))
+ args.insert(0, "PYTHONPATH=%s" % ":".join(["$PYTHONPATH"] + pypath))
plantestsuite_idlist(name, env, args)