summaryrefslogtreecommitdiff
path: root/rb/config/TestUtil.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-10-25 23:20:23 +0000
committerMark Spruiell <mes@zeroc.com>2006-10-25 23:20:23 +0000
commite24386b3d649069ea0ac8740b0af6a4664a5918e (patch)
tree4d35cdcf989a44d9eba95e18fc9a3e58b2c089b9 /rb/config/TestUtil.py
parentmore cleanup (diff)
downloadice-e24386b3d649069ea0ac8740b0af6a4664a5918e.tar.bz2
ice-e24386b3d649069ea0ac8740b0af6a4664a5918e.tar.xz
ice-e24386b3d649069ea0ac8740b0af6a4664a5918e.zip
fix for missing ICE_HOME
Diffstat (limited to 'rb/config/TestUtil.py')
-rw-r--r--rb/config/TestUtil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rb/config/TestUtil.py b/rb/config/TestUtil.py
index f532cdd0bef..bf639a68964 100644
--- a/rb/config/TestUtil.py
+++ b/rb/config/TestUtil.py
@@ -78,7 +78,7 @@ for o, a in opts:
#
# Check for ICE_HOME.
#
-ice_home = os.environ["ICE_HOME"]
+ice_home = os.getenv("ICE_HOME", "")
if len(ice_home) == 0:
print "ICE_HOME is not defined"
sys.exit(1)