mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-22 23:23:30 -06:00
Use pylint 1.7.5 with fix for bad python3 import
Closes: https://pagure.io/freeipa/issue/7315 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Petr Cech <pcech@redhat.com>
This commit is contained in:
parent
1c9f0a4b19
commit
b567f3afea
@ -9,5 +9,5 @@ ipapython == @VERSION@
|
||||
ipaserver == @VERSION@
|
||||
ipatests == @VERSION@
|
||||
|
||||
# we include some checks available only in pylint-1.7 and on
|
||||
pylint >= 1.7
|
||||
# upstream pylint 1.7.5 fixed bad python3 import of stat module
|
||||
pylint >= 1.7.5
|
||||
|
@ -25,7 +25,7 @@ import io
|
||||
import pwd
|
||||
import grp
|
||||
import re
|
||||
import stat # pylint: disable=bad-python3-import
|
||||
import stat
|
||||
import tempfile
|
||||
from tempfile import NamedTemporaryFile
|
||||
import shutil
|
||||
|
@ -33,7 +33,7 @@ import fileinput
|
||||
import sys
|
||||
import tempfile
|
||||
import shutil
|
||||
import stat # pylint: disable=bad-python3-import
|
||||
import stat
|
||||
import traceback
|
||||
import textwrap
|
||||
from contextlib import contextmanager
|
||||
|
Loading…
Reference in New Issue
Block a user