# HG changeset patch
# User Vincent Hatakeyama <vincent.hatakeyama@xcg-consulting.fr>
# Date 1660228306 -7200
#      Thu Aug 11 16:31:46 2022 +0200
# Node ID 082f99239820852fa960afc963ae35eede65c8fb
# Parent  2a42e6728b227787d3e42a19ca2bf050cae0157e
🚑 fix pylint on odoo 11 with python 3.8

diff --git a/NEWS.rst b/NEWS.rst
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -9,6 +9,8 @@
 
 Fix issue with volume being created at each docker_dev_start run.
 
+Make docker_pylint work on Odoo 11 projects that uses python3.8.
+
 16.6.0
 ------
 
diff --git a/odoo_scripts/docker_pylint.py b/odoo_scripts/docker_pylint.py
--- a/odoo_scripts/docker_pylint.py
+++ b/odoo_scripts/docker_pylint.py
@@ -91,7 +91,7 @@
         if odoo_type == ODOO_10:
             pythons = ("python2.7",)
         elif odoo_type == ODOO_11:
-            pythons = ("python3.5", "python3.6")
+            pythons = ("python3.5", "python3.6", "python3.8")
         elif odoo_type == ODOO_13:
             pythons = ("python3.8",)
         elif odoo_type == ODOO_15: