diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 05:29:20 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-11 05:29:20 +0200 |
commit | babdcc6135e6d3a91a9ddeae0555652026f09344 (patch) | |
tree | ffcd95daa640fd69675891ab02cfa88a6b21a9a4 /source4/scripting | |
parent | 67914192c29a0abe98b264c3c9aba8bdb2cae437 (diff) | |
download | samba-babdcc6135e6d3a91a9ddeae0555652026f09344.tar.gz samba-babdcc6135e6d3a91a9ddeae0555652026f09344.tar.bz2 samba-babdcc6135e6d3a91a9ddeae0555652026f09344.zip |
Use system python rather than smbpython.
(This used to be commit d3df51cd01e53383dcc05923d248db03bc6f62e9)
Diffstat (limited to 'source4/scripting')
-rwxr-xr-x | source4/scripting/bin/subunitrun | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/scripting/bin/subunitrun b/source4/scripting/bin/subunitrun index fbbffde42c..719a58d9e5 100755 --- a/source4/scripting/bin/subunitrun +++ b/source4/scripting/bin/subunitrun @@ -17,8 +17,10 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -from subunit import SubunitTestRunner import sys +sys.path.append("bin/python") + +from subunit import SubunitTestRunner from unittest import TestProgram import optparse import os |