Also ignore ImportWarning for pkg_resources import

This commit is contained in:
Florian Bruhin 2016-07-23 14:15:39 +02:00
parent 78fd614237
commit 02a06732ff

View File

@ -40,9 +40,13 @@ from PyQt5.QtWidgets import QApplication
from qutebrowser.utils import log
with log.ignore_py_warnings(category=PendingDeprecationWarning, module='imp'):
# This imports 'imp' and gives us a PendingDeprecationWarning on
# Debian Jessie.
import pkg_resources
with log.ignore_py_warnings(category=ImportWarning):
# This imports 'imp' and gives us a PendingDeprecationWarning on
# Debian Jessie.
#
# On Archlinux, we get ImportWarning from
# importlib/_bootstrap_external.py for modules with missing __init__.
import pkg_resources
MAXVALS = {