diff options
author | Jose <jose@zeroc.com> | 2017-06-20 23:08:53 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-06-20 23:08:53 +0200 |
commit | 83fe003d9a6237651cb92039f29072d77b762e0c (patch) | |
tree | f4b700e7c01d93e977d0e46bc79ae7837e502d5c /scripts/Util.py | |
parent | Enable StackTraces for C++ release builds in test Util.py (diff) | |
download | ice-83fe003d9a6237651cb92039f29072d77b762e0c.tar.bz2 ice-83fe003d9a6237651cb92039f29072d77b762e0c.tar.xz ice-83fe003d9a6237651cb92039f29072d77b762e0c.zip |
Minor fix for StackTraces in Util.py
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 863c9bbe5cf..c7c0a67f6dc 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -2674,7 +2674,7 @@ class CppMapping(Mapping): props = Mapping.getProps(self, process, current) if isinstance(process, IceProcess): props["Ice.NullHandleAbort"] = True - props["Ice.PrintStackTraces"] = "1" + props["Ice.PrintStackTraces"] = "1" return props def getSSLProps(self, process, current): |