From f29bc17085ff054627b2392312e855f8be305fe0 Mon Sep 17 00:00:00 2001 From: Manuel Gunther <siebenkopf@googlemail.com> Date: Tue, 26 Sep 2017 14:02:30 -0600 Subject: [PATCH] Switched to 'pdf' backend instead of 'agg' --- bob/bio/base/script/evaluate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/bio/base/script/evaluate.py b/bob/bio/base/script/evaluate.py index 562c5956..c4a6d0b3 100644 --- a/bob/bio/base/script/evaluate.py +++ b/bob/bio/base/script/evaluate.py @@ -11,7 +11,7 @@ from __future__ import print_function # matplotlib stuff import matplotlib from matplotlib import pyplot -pyplot.switch_backend('agg') # switch to non-X backend +pyplot.switch_backend('pdf') # switch to non-X backend from matplotlib.backends.backend_pdf import PdfPages # import bob.measure after matplotlib, so that it cannot define the backend -- GitLab