diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-11-27 17:24:31 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-11-27 17:24:31 +0100 |
commit | 82b3e55bd7151c9527b00806660e82f1cec5b3c2 (patch) | |
tree | 19ca4b934a61f7c550fc4b71954b285c67a06619 /js/test/Common/run.py | |
parent | Fixed (ICE-6023) - java Slice/generation test tries to use bin/x64/slice2java... (diff) | |
download | ice-82b3e55bd7151c9527b00806660e82f1cec5b3c2.tar.bz2 ice-82b3e55bd7151c9527b00806660e82f1cec5b3c2.tar.xz ice-82b3e55bd7151c9527b00806660e82f1cec5b3c2.zip |
Fixed ICE-6024: JS run.py not working on Windows
Diffstat (limited to 'js/test/Common/run.py')
-rwxr-xr-x | js/test/Common/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/test/Common/run.py b/js/test/Common/run.py index 5832717966b..2cdc70cf13d 100755 --- a/js/test/Common/run.py +++ b/js/test/Common/run.py @@ -36,7 +36,7 @@ if sys.platform == "darwin": else: print("trust settings already removed") sys.exit(0) - except getopt.GetoptError, ex: + except getopt.GetoptError: pass import TestUtil |