From 682bdbeab43af396686617cb4816945bc1bf3179 Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Wed, 12 Aug 2020 19:38:40 +0100 Subject: [PATCH] Add missing essential modules to internal error message --- linkcheck/configuration/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linkcheck/configuration/__init__.py b/linkcheck/configuration/__init__.py index 70a10b98..7a8f6f3e 100644 --- a/linkcheck/configuration/__init__.py +++ b/linkcheck/configuration/__init__.py @@ -63,7 +63,10 @@ def normpath(path): # List Python modules in the form (module, name, version attribute) Modules = ( # required modules + ("bs4", "Beautiful Soup", "__version__"), + ("dns.version", "dnspython", "version"), ("requests", "Requests", "__version__"), + ("xdg", "PyXDG", "__version__"), # optional modules ("argcomplete", "Argcomplete", None), ("GeoIP", "GeoIP", 'lib_version'), # on Unix systems