6288: crash: no attribute 'require_version' - better fix

svn: r21207
This commit is contained in:
Benny Malengier 2013-01-24 08:45:00 +00:00
parent 284ee7dce9
commit 3e80ed51e0

View File

@ -56,10 +56,13 @@ PYGOBJ_ERR = False
try:
#import gnome introspection, part of pygobject
import gi
giversion = gi.version_info
giversion = gi.require_version
except:
PYGOBJ_ERR = True
print(_("Your version of gi (gnome-instrospection) seems to be too old. "
"You need a version which has the function 'require_version' "
"to start Gramps"))
sys.exit(0)
if not PYGOBJ_ERR:
try:
from gi.repository import GObject