diff options
author | Joe George <joe@zeroc.com> | 2017-06-16 17:42:32 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2017-06-16 17:42:39 -0400 |
commit | 87cd25bd5f68c0e8c62ef71e7ba8c98b03bda6a7 (patch) | |
tree | d3045d168cbb43c47df1928fe7fb9df86739449e /scripts/Util.py | |
parent | Fix allTest.py Windows failure (diff) | |
download | ice-87cd25bd5f68c0e8c62ef71e7ba8c98b03bda6a7.tar.bz2 ice-87cd25bd5f68c0e8c62ef71e7ba8c98b03bda6a7.tar.xz ice-87cd25bd5f68c0e8c62ef71e7ba8c98b03bda6a7.zip |
Fix typo in scripts/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 aa55407fe2c..9b714046ac4 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -28,7 +28,7 @@ def run(cmd, cwd=None, err=False): if(not err and p.wait() != 0) or (err and p.wait() == 0) : raise RuntimeError(cmd + " failed:\n" + out) # - # Without this we get warnings when runing with python_d on Windows + # Without this we get warnings when running with python_d on Windows # # ResourceWarning: unclosed file <_io.TextIOWrapper name=3 encoding='cp1252'> # |