diff options
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index 1f58b90c991..6f68bcca00c 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -879,7 +879,8 @@ def hashPasswords(filePath, entries): os.remove(filePath) passwords = open(filePath, "a") - command = "%s %s" % (sys.executable, os.path.abspath(os.path.join(os.path.dirname(__file__), "icehashpassword.py"))) + command = '%s "%s"' % (sys.executable, + os.path.abspath(os.path.join(os.path.dirname(__file__), "icehashpassword.py"))) # # For Linux ARM default rounds makes test slower (Usually runs on embbeded boards) |