summaryrefslogtreecommitdiffstats
path: root/common/latex.py
diff options
context:
space:
mode:
Diffstat (limited to 'common/latex.py')
-rw-r--r--common/latex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/latex.py b/common/latex.py
index b3ca60c..bf5c91d 100644
--- a/common/latex.py
+++ b/common/latex.py
@@ -128,7 +128,7 @@ def configure_tests(conf):
tests = sorted(package_tests.keys())
local_packs = local_packages()
- excludes = package_optional
+ excludes = [p for p in package_optional]
if local_packs is not None:
excludes += [p[:p.rfind('.')] for p in local_packs]
for e in excludes:
@@ -157,7 +157,7 @@ def configure_tests(conf):
msg = "Checking for Tex package '%s'" % (t),
tex_test = t,
okmsg = 'ok',
- errmsg = 'degraded fonts',
+ errmsg = 'not found (degraded fonts)',
mandatory = False)
if r is None:
fails += 1