summaryrefslogtreecommitdiffstats
path: root/src/VBox/ValidationKit/testboxscript/testboxscript_real.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/ValidationKit/testboxscript/testboxscript_real.py')
-rwxr-xr-xsrc/VBox/ValidationKit/testboxscript/testboxscript_real.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VBox/ValidationKit/testboxscript/testboxscript_real.py b/src/VBox/ValidationKit/testboxscript/testboxscript_real.py
index 7a2581ae..af7df36e 100755
--- a/src/VBox/ValidationKit/testboxscript/testboxscript_real.py
+++ b/src/VBox/ValidationKit/testboxscript/testboxscript_real.py
@@ -37,7 +37,7 @@ terms and conditions of either the GPL or the CDDL or both.
SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
"""
-__version__ = "$Revision: 155244 $"
+__version__ = "$Revision: 162363 $"
# Standard python imports.
@@ -714,7 +714,7 @@ class TestBoxScript(object):
sFullName = os.path.join(self._oOptions.sScratchRoot, sName);
try:
if os.path.isdir(sFullName):
- shutil.rmtree(sFullName, False, oRc.onErrorCallback);
+ shutil.rmtree(sFullName, False, oRc.onErrorCallback); # pylint: disable=deprecated-argument
else:
os.remove(sFullName);
if os.path.exists(sFullName):