summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/throttle
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2022-08-08 22:18:28 +0200
committerGitHub <noreply@github.com>2022-08-08 22:18:28 +0200
commit650befed37eadcaea735673638d5475fa957ca7e (patch)
tree5c5cce3416dc217923b416bdada8a75d931adae3 /test/integration/targets/throttle
parentapt: include apt preferences (e.g. pinning) when selecting packages (#78327) (diff)
downloadansible-650befed37eadcaea735673638d5475fa957ca7e.tar.xz
ansible-650befed37eadcaea735673638d5475fa957ca7e.zip
Add missing space after keywords. (#78480)
Also remove unnecessary parenthesis.
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)