summaryrefslogtreecommitdiff
path: root/buildscripts/linter
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2019-04-16 14:33:43 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2019-04-16 14:33:43 -0400
commit286c0312647aae2261885da3c350f2cf24ea717d (patch)
treed2c026d07af31d046f276dac29cc9f468a6fa4b9 /buildscripts/linter
parentf87a44a7433199caf1f8e7b7b16238ed87f3f60a (diff)
downloadmongo-286c0312647aae2261885da3c350f2cf24ea717d.tar.gz
SERVER-40559 Python linters do not run after upgrade to Python 3
Diffstat (limited to 'buildscripts/linter')
-rw-r--r--buildscripts/linter/parallel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/linter/parallel.py b/buildscripts/linter/parallel.py
index b80ec7f2c1b..8c38f6a3294 100644
--- a/buildscripts/linter/parallel.py
+++ b/buildscripts/linter/parallel.py
@@ -15,7 +15,7 @@ def parallel_process(items, func):
except NotImplementedError:
cpus = 1
- task_queue = queue.Queue() # type: Queue.Queue
+ task_queue = queue.Queue() # type: queue.Queue
# Use a list so that worker function will capture this variable
pp_event = threading.Event()