summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/throttle
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/throttle')
-rwxr-xr-xtest/integration/targets/throttle/test_throttle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/throttle/test_throttle.py b/test/integration/targets/throttle/test_throttle.py
index 3ee8424eb7..1a5bdd3078 100755
--- a/test/integration/targets/throttle/test_throttle.py
+++ b/test/integration/targets/throttle/test_throttle.py
@@ -15,7 +15,7 @@ throttledir = os.path.expanduser(throttledir)
throttlefile = os.path.join(throttledir, inventory_hostname)
try:
# create the file
- with(open(throttlefile, 'a')):
+ with open(throttlefile, 'a'):
os.utime(throttlefile, None)
# count the number of files in the dir
throttlelist = os.listdir(throttledir)