diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-12-28 09:58:47 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-12-28 09:58:47 +0100 |
commit | cb0f280dde3ba6994e50ff3afb286bb051e1524a (patch) | |
tree | 0c7cd4eeaf3cc214bdf6a8f520c0cd11c235f783 /scripts/Util.py | |
parent | Added missing conditionals for iOS / UWP (diff) | |
download | ice-cb0f280dde3ba6994e50ff3afb286bb051e1524a.tar.bz2 ice-cb0f280dde3ba6994e50ff3afb286bb051e1524a.tar.xz ice-cb0f280dde3ba6994e50ff3afb286bb051e1524a.zip |
Removed bogus assert from StreamHelper
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 3288d3d5129..f5db35fec29 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -2994,7 +2994,7 @@ class Driver: def getProcessProps(self, current, ready, readyCount): props = {} if ready or readyCount > 0: - if current.config.buildPlatform not in ["iphonesimulator", "iphoneos"]: + if not current.config.uwp and current.config.buildPlatform not in ["iphonesimulator", "iphoneos"]: props["Ice.PrintAdapterReady"] = 1 return props |