diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-11-10 20:44:59 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-11-10 23:37:04 +0100 |
commit | e0b8af57c43e3fcb0ed9485ac707761a04582a34 (patch) | |
tree | cc18cb117b96b0f0dba49a2236dda40a404b1b91 | |
parent | 0fcec8bfa0da647d478198a2b468951f230a9022 (diff) | |
download | samba-e0b8af57c43e3fcb0ed9485ac707761a04582a34.tar.gz samba-e0b8af57c43e3fcb0ed9485ac707761a04582a34.tar.bz2 samba-e0b8af57c43e3fcb0ed9485ac707761a04582a34.zip |
selftesthelpers: Fix syntax error.
-rw-r--r-- | selftest/selftesthelpers.py | 2 |
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) |