* 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:
Brian Matherly 2007-03-06 03:01:43 +00:00
parent 4d4b9441d0
commit 51d7922473
2 changed files with 8 additions and 0 deletions

View File

@ -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>
* src/plugins/GraphViz.py: Fix 0000942: Relationship graph doesn't show
preferred name format

View File

@ -52,6 +52,10 @@ log = logging.getLogger(".GtkDoc")
import pygtk
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 pango