diff options
author | Jose <jose@zeroc.com> | 2009-03-11 23:10:00 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-03-11 23:10:00 +0100 |
commit | 7aa350c542396a7aa7f65a4d4124484431a96a9a (patch) | |
tree | 605330537e20eff8059bbe0e9c01a0c500e21aca /demoscript/Util.py | |
parent | removed copyright header for subprocess.py./ (diff) | |
download | ice-7aa350c542396a7aa7f65a4d4124484431a96a9a.tar.bz2 ice-7aa350c542396a7aa7f65a4d4124484431a96a9a.tar.xz ice-7aa350c542396a7aa7f65a4d4124484431a96a9a.zip |
Fix 3838 - Demo script Util.py --mode is wrong
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 0becb3d58dd..d0352171e7d 100644 --- a/demoscript/Util.py +++ b/demoscript/Util.py @@ -579,7 +579,7 @@ def processCmdLine(): iceHome = a if o == "--mode": buildmode = a - if buildmode != 'debug' and mode != 'release': + if buildmode != 'debug' and buildmode != 'release': usage() if host != "": |