summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
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'>
#