diff options
author | Matt Clay <matt@mystile.com> | 2022-08-08 22:18:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-08 22:18:28 +0200 |
commit | 650befed37eadcaea735673638d5475fa957ca7e (patch) | |
tree | 5c5cce3416dc217923b416bdada8a75d931adae3 /test/integration/targets/throttle | |
parent | apt: include apt preferences (e.g. pinning) when selecting packages (#78327) (diff) | |
download | ansible-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-x | test/integration/targets/throttle/test_throttle.py | 2 |
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) |