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,9 +56,12 @@ PYGOBJ_ERR = False
try: try:
#import gnome introspection, part of pygobject #import gnome introspection, part of pygobject
import gi import gi
giversion = gi.version_info giversion = gi.require_version
except: 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: if not PYGOBJ_ERR:
try: try: