summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2017-06-16 17:42:32 -0400
committerJoe George <joe@zeroc.com>2017-06-16 17:42:39 -0400
commit87cd25bd5f68c0e8c62ef71e7ba8c98b03bda6a7 (patch)
treed3045d168cbb43c47df1928fe7fb9df86739449e /scripts/Util.py
parentFix allTest.py Windows failure (diff)
downloadice-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.py2
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'>
#