diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-06-17 12:56:34 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-06-17 12:56:34 +0800 |
commit | 4e40e22bfb7f2e8dce8859ab2104b91882b55f61 (patch) | |
tree | fefeb0fe8664378544f956db5acc59dc72a6707a /py/demo/Ice/bidir/Server.py | |
parent | remove double build in the interceptor test. (diff) | |
download | ice-4e40e22bfb7f2e8dce8859ab2104b91882b55f61.tar.bz2 ice-4e40e22bfb7f2e8dce8859ab2104b91882b55f61.tar.xz ice-4e40e22bfb7f2e8dce8859ab2104b91882b55f61.zip |
http://bugzilla/bugzilla/show_bug.cgi?id=3265
- Simplified the python implementation of Ice.getSliceDir
- Added ruby implementation of Ice.getSliceDir
- Adjusted demos & tests to use Ice.getSliceDir appropriately.
Diffstat (limited to 'py/demo/Ice/bidir/Server.py')
-rwxr-xr-x | py/demo/Ice/bidir/Server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/demo/Ice/bidir/Server.py b/py/demo/Ice/bidir/Server.py index 9b5c3db5ffe..4d030437966 100755 --- a/py/demo/Ice/bidir/Server.py +++ b/py/demo/Ice/bidir/Server.py @@ -12,7 +12,7 @@ import os, sys, traceback, threading, Ice slice_dir = Ice.getSliceDir() if not slice_dir: - print sys.argv[0] + ': Slice directory not found. Define ICE_HOME.' + print sys.argv[0] + ': Slice directory not found.' sys.exit(1) Ice.loadSlice('-I' + slice_dir + ' Callback.ice') |