Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add log message in pdf plugin when poppler not available #354

Merged
merged 1 commit into from
Jun 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/gourmet/plugins/import_export/pdf_plugin/print_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@
from gi.repository import Gtk

from gourmet.plugin import PrinterPlugin
from gourmet.gdebug import debug

from . import pdf_exporter

if sys.platform not in ["win32",'darwin']:
from gi import require_version
require_version('Poppler', '0.18')
from gi.repository import Poppler
try:
from gi import require_version
require_version('Poppler', '0.18')
from gi.repository import Poppler
except ValueError: # require_version does not find the poppler namespace
debug('Poppler not available: no pdf export possible', 0)


rl2gtk_papersizes = {
Expand Down