Changed text for not found imports

This commit is contained in:
Ozzieisaacs 2019-08-03 18:24:56 +02:00
parent e9fb5d9f25
commit 3eae2e9c2c
1 changed files with 2 additions and 2 deletions

View File

@ -26,13 +26,13 @@ log = logger.create()
try: from . import goodreads
except ImportError as err:
log.debug("goodreads: %s", err)
log.debug("cannot import goodreads, showing authors-metadata will not work: %s", err)
goodreads = None
try: from . import simpleldap as ldap
except ImportError as err:
log.debug("simpleldap: %s", err)
log.debug("cannot import simpleldap, logging in with ldap will not work: %s", err)
ldap = None