diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-02-15 12:55:17 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-02-15 12:55:17 +0100 |
commit | 62fc8763f1a907e3b69188db1574946ae75ddfbc (patch) | |
tree | 5c070ffe97b27e322c7ed3dea659b5f1b1868dea /demoscript/Util.py | |
parent | Fixed ICE-5159 - Metrics & Instrumentaton APIs documentation (diff) | |
download | ice-62fc8763f1a907e3b69188db1574946ae75ddfbc.tar.bz2 ice-62fc8763f1a907e3b69188db1574946ae75ddfbc.tar.xz ice-62fc8763f1a907e3b69188db1574946ae75ddfbc.zip |
Fixed ICE-5249 - demoscript/Util.py error
Diffstat (limited to 'demoscript/Util.py')
-rw-r--r-- | demoscript/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demoscript/Util.py b/demoscript/Util.py index 69435c018a2..115b1d88cf1 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -729,7 +729,7 @@ def processCmdLine(): iceHome = "/usr" if not x64: - x64 = isWin32() and os.environ.get("PLATFORM").upper() == "X64" or os.environ.get("LP64") == "yes" + x64 = isWin32() and os.environ.get("PLATFORM", "").upper() == "X64" or os.environ.get("LP64", "") == "yes" if not noenv: configurePaths() |