diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2018-07-25 10:26:00 -0400 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2018-07-25 10:26:00 -0400 |
commit | ce430952c35a9409ee80d03f70b6b618aa1802cd (patch) | |
tree | 695056479d3d01aafa48c16aa9a6448bbc169d3f /pytests | |
parent | abc9ecda03f70ad38eef15b7c8dd394811ba7cff (diff) | |
download | mongo-ce430952c35a9409ee80d03f70b6b618aa1802cd.tar.gz |
SERVER-33695 Fix lint
Diffstat (limited to 'pytests')
-rwxr-xr-x | pytests/powertest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pytests/powertest.py b/pytests/powertest.py index 582b0cba1be..bbb2f9a72a7 100755 --- a/pytests/powertest.py +++ b/pytests/powertest.py @@ -1263,7 +1263,7 @@ def remote_handler(options, operations): # pylint: disable=too-many-branches,to LOGGER.info(output) # Rename the rsync_dir only if it has a different name than new_rsync_dir. if ret == 0 and rsync_dir != new_rsync_dir: - LOGGER.info("Renaming directory {} to {}".format(rsync_dir, new_rsync_dir)) + LOGGER.info("Renaming directory %s to %s", rsync_dir, new_rsync_dir) os.rename(rsync_dir, new_rsync_dir) elif operation == "seed_docs": |