diff options
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) |