* src/docgen/GtkPrint.py: Fix 0000908: GtkPrint doesn't parse if you don't have pygtk version 2.10
svn: r8270
This commit is contained in:
parent
4d4b9441d0
commit
51d7922473
@ -1,3 +1,7 @@
|
|||||||
|
2007-03-05 Brian Matherly <brian@gramps-project.org>
|
||||||
|
* src/docgen/GtkPrint.py: Fix 0000908: GtkPrint doesn't parse if you don't
|
||||||
|
have pygtk version 2.10
|
||||||
|
|
||||||
2007-03-05 Brian Matherly <brian@gramps-project.org>
|
2007-03-05 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/plugins/GraphViz.py: Fix 0000942: Relationship graph doesn't show
|
* src/plugins/GraphViz.py: Fix 0000942: Relationship graph doesn't show
|
||||||
preferred name format
|
preferred name format
|
||||||
|
@ -52,6 +52,10 @@ log = logging.getLogger(".GtkDoc")
|
|||||||
|
|
||||||
import pygtk
|
import pygtk
|
||||||
import gtk
|
import gtk
|
||||||
|
|
||||||
|
if not hasattr(gtk, "PrintOperation"):
|
||||||
|
raise Errors.UnavailableError(_("Cannot be loaded because PyGtk 2.10 or later is not installed"))
|
||||||
|
|
||||||
import cairo
|
import cairo
|
||||||
import pango
|
import pango
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user