summaryrefslogtreecommitdiff
path: root/MAT/strippers.py
diff options
context:
space:
mode:
authorjvoisin2013-04-05 11:00:47 +0200
committerjvoisin2013-04-05 11:00:47 +0200
commit8516bb77f86ebdcedb1e64f56f9acd673027ddcb (patch)
treea93079693531263dfc5802ea42313c53dcaa0493 /MAT/strippers.py
parent861996f614950c7061097a049efd56f5a0a4b6a5 (diff)
parent3d8e11ce644833106f22778f3171c52a51ff69fe (diff)
Merge branches 'gi_jack' and 'gtk3'
Conflicts: mat-gui
Diffstat (limited to 'MAT/strippers.py')
-rw-r--r--MAT/strippers.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/MAT/strippers.py b/MAT/strippers.py
index bde58ca..d274e7e 100644
--- a/MAT/strippers.py
+++ b/MAT/strippers.py
@@ -4,6 +4,7 @@
4 4
5import images 5import images
6import audio 6import audio
7import gi
7import office 8import office
8import archive 9import archive
9import misc 10import misc
@@ -24,9 +25,9 @@ STRIPPERS = {
24# PDF support 25# PDF support
25pdfSupport = True 26pdfSupport = True
26try: 27try:
27 import poppler 28 from gi.repository import Poppler
28except ImportError: 29except ImportError:
29 print('Unable to import python-poppler: not PDF support') 30 print('Unable to import Poppler')
30 pdfSupport = False 31 pdfSupport = False
31 32
32try: 33try: