0000908: GtkPrint doesn't parse if you don't have pygtk version 2.10

svn: r8381
This commit is contained in:
Brian Matherly 2007-04-13 18:11:05 +00:00
parent 004df1cef8
commit 8389f6f6c9
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2007-04-12 Brian Matherly <brian@gramps-project.org>
* src/docgen/GtkPrint.py: 0000908: GtkPrint doesn't parse if you don't have
pygtk version 2.10
2007-04-12 Brian Matherly <brian@gramps-project.org>
* src/GrampsDb/_ReadXML.py: 0001011: XML import loses media objects when
media object has no title

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