Also ignore ImportWarning for pkg_resources import
This commit is contained in:
parent
78fd614237
commit
02a06732ff
@ -40,9 +40,13 @@ from PyQt5.QtWidgets import QApplication
|
|||||||
from qutebrowser.utils import log
|
from qutebrowser.utils import log
|
||||||
|
|
||||||
with log.ignore_py_warnings(category=PendingDeprecationWarning, module='imp'):
|
with log.ignore_py_warnings(category=PendingDeprecationWarning, module='imp'):
|
||||||
# This imports 'imp' and gives us a PendingDeprecationWarning on
|
with log.ignore_py_warnings(category=ImportWarning):
|
||||||
# Debian Jessie.
|
# This imports 'imp' and gives us a PendingDeprecationWarning on
|
||||||
import pkg_resources
|
# Debian Jessie.
|
||||||
|
#
|
||||||
|
# On Archlinux, we get ImportWarning from
|
||||||
|
# importlib/_bootstrap_external.py for modules with missing __init__.
|
||||||
|
import pkg_resources
|
||||||
|
|
||||||
|
|
||||||
MAXVALS = {
|
MAXVALS = {
|
||||||
|
Loading…
Reference in New Issue
Block a user