summaryrefslogtreecommitdiff
path: root/buildscripts/evergreen_gen_multiversion_tests.py
diff options
context:
space:
mode:
authorDavid Bradford <david.bradford@mongodb.com>2021-03-01 12:35:13 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-03-01 23:46:55 +0000
commita22cbaba0634e6d20244b75c94e8e693e961399d (patch)
tree37cbc45eae4d174299f33515ea97214789b9cb75 /buildscripts/evergreen_gen_multiversion_tests.py
parentfae0542f9ff0be300a5a6d1eb901b15f5a0953dd (diff)
downloadmongo-a22cbaba0634e6d20244b75c94e8e693e961399d.tar.gz
SERVER-54861: Update pylint to 2.7.2
Diffstat (limited to 'buildscripts/evergreen_gen_multiversion_tests.py')
-rwxr-xr-xbuildscripts/evergreen_gen_multiversion_tests.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/buildscripts/evergreen_gen_multiversion_tests.py b/buildscripts/evergreen_gen_multiversion_tests.py
index f639aa55787..5a413ae1e3a 100755
--- a/buildscripts/evergreen_gen_multiversion_tests.py
+++ b/buildscripts/evergreen_gen_multiversion_tests.py
@@ -93,7 +93,6 @@ def get_backports_required_last_lts_hash(task_path_suffix: str):
"""Parse the last-lts shell binary to get the commit hash."""
last_lts_shell_exec = os.path.join(task_path_suffix, LAST_LTS_MONGO_BINARY)
shell_version = check_output([last_lts_shell_exec, "--version"]).decode('utf-8')
- last_lts_commit_hash = ""
for line in shell_version.splitlines():
if "gitVersion" in line:
version_line = line.split(':')[1]