diff options
author | David Dahl <dahl@mcs.anl.gov> | 2006-10-13 16:59:28 +0000 |
---|---|---|
committer | David Dahl <dahl@mcs.anl.gov> | 2006-10-13 16:59:28 +0000 |
commit | ed4fcdc39ddea985cf893fdc147c5ee294dfbce2 (patch) | |
tree | 2712a56c8775ab96fee698e05de22f967447f0ca /src/lib | |
parent | 6794db04a229153ceefdfb3d3b99ed6e691d5df6 (diff) | |
download | bcfg2-ed4fcdc39ddea985cf893fdc147c5ee294dfbce2.tar.gz bcfg2-ed4fcdc39ddea985cf893fdc147c5ee294dfbce2.tar.bz2 bcfg2-ed4fcdc39ddea985cf893fdc147c5ee294dfbce2.zip |
removed hard-coded path to Hostbase module in test harness
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2433 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/Server/Hostbase/test/harness.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/Server/Hostbase/test/harness.py b/src/lib/Server/Hostbase/test/harness.py index 05e473609..befcff5c0 100644 --- a/src/lib/Server/Hostbase/test/harness.py +++ b/src/lib/Server/Hostbase/test/harness.py @@ -6,4 +6,6 @@ server_hostbase = os.path.realpath(here + '../../../../') sys.path.insert(0,server_hostbase) sys.path.insert(0,server_hostbase + '../') -sys.path.insert(0,'/home/dahl/Code/bcfg2/src/lib/Server/Hostbase') +#commented this out, but might be needed for now until the harness is figured out +#if so, use your actual path to the Hostbase module +#sys.path.insert(0,'/home/dahl/Code/bcfg2/src/lib/Server/Hostbase') |