From 041a9de06b1c2d7a3edad22c716108793021d226 Mon Sep 17 00:00:00 2001 From: Mathieu Courtois <mathieu.courtois@edf.fr> Date: Fri, 13 Sep 2024 10:45:41 +0200 Subject: [PATCH] [#33476] add a conditional import (win) --- lib/aslint/python/python_checkers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/aslint/python/python_checkers.py b/lib/aslint/python/python_checkers.py index bc145df..50e1b9f 100644 --- a/lib/aslint/python/python_checkers.py +++ b/lib/aslint/python/python_checkers.py @@ -53,7 +53,7 @@ class EDFCopyright(FileContentCat, COMM.EDFCopyright): Example: - Copyright 2008 Company ABC - - Copyright 2008-2013 EDF R&D www.code-aster.org + - Copyright 2008-2024 EDF R&D www.code-aster.org """ id = "C4003" @@ -153,7 +153,7 @@ class DisabledMsg(DirnameCat, GenericMsg): def search(self, txt): """Check for disabled messages""" - expected = 5 + expected = 6 err = [] count = 0 for base, _, __ in os.walk("code_aster"): -- GitLab