6288: crash: no attribute 'require_version' - better fix
svn: r21207
This commit is contained in:
parent
284ee7dce9
commit
3e80ed51e0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user