diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-02-01 14:43:34 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-02-02 15:21:12 +1100 |
commit | 7faa3be45359a94593d22e2bbe7eda0ddffa146c (patch) | |
tree | 7ee07ec41df08a2f9b5032d5997b671820aacdfc /source4/torture | |
parent | 38aacd7a7bc551797d8c60cc695fc4922941add9 (diff) | |
download | samba-7faa3be45359a94593d22e2bbe7eda0ddffa146c.tar.gz samba-7faa3be45359a94593d22e2bbe7eda0ddffa146c.tar.bz2 samba-7faa3be45359a94593d22e2bbe7eda0ddffa146c.zip |
s4-python Ensure we add the Samba python path first.
This exact form of the construction is important, and we match on it
in the installation scripts.
Andrew Bartlett
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/drs/python/delete_object.py | 2 | ||||
-rw-r--r-- | source4/torture/drs/python/fsmo.py | 2 | ||||
-rw-r--r-- | source4/torture/drs/python/repl_schema.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/drs/python/delete_object.py b/source4/torture/drs/python/delete_object.py index ccc412e171..c52060f943 100644 --- a/source4/torture/drs/python/delete_object.py +++ b/source4/torture/drs/python/delete_object.py @@ -30,7 +30,7 @@ import sys import time import os -sys.path.append("bin/python") +sys.path.insert(0, "bin/python") from ldb import ( SCOPE_BASE, diff --git a/source4/torture/drs/python/fsmo.py b/source4/torture/drs/python/fsmo.py index 4dc573b89c..d7b3c1671d 100644 --- a/source4/torture/drs/python/fsmo.py +++ b/source4/torture/drs/python/fsmo.py @@ -29,7 +29,7 @@ import sys import time import os -sys.path.append("bin/python") +sys.path.insert(0, "bin/python") from ldb import SCOPE_BASE diff --git a/source4/torture/drs/python/repl_schema.py b/source4/torture/drs/python/repl_schema.py index a98452ed13..db14c37adf 100644 --- a/source4/torture/drs/python/repl_schema.py +++ b/source4/torture/drs/python/repl_schema.py @@ -32,7 +32,7 @@ import time import random import os -sys.path.append("bin/python") +sys.path.insert(0, "bin/python") import samba samba.ensure_external_module("testtools", "testtools") samba.ensure_external_module("subunit", "subunit/python") |