use latest gtkspell if available
svn: r21309
This commit is contained in:
parent
280c455eba
commit
1dfd067e52
@ -57,15 +57,15 @@ HAVE_GTKSPELL = False
|
|||||||
# Attempting to import gtkspell gives an error dialog if gtkspell is not
|
# Attempting to import gtkspell gives an error dialog if gtkspell is not
|
||||||
# available so test first and log just a warning to the console instead.
|
# available so test first and log just a warning to the console instead.
|
||||||
repository = Repository.get_default()
|
repository = Repository.get_default()
|
||||||
if repository.enumerate_versions("Gtkspell"):
|
if repository.enumerate_versions("GtkSpell"):
|
||||||
try:
|
try:
|
||||||
from gi.repository import Gtkspell
|
from gi.repository import GtkSpell as Gtkspell
|
||||||
HAVE_GTKSPELL = True
|
HAVE_GTKSPELL = True
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
elif repository.enumerate_versions("GtkSpell"):
|
elif repository.enumerate_versions("Gtkspell"):
|
||||||
try:
|
try:
|
||||||
from gi.repository import GtkSpell as Gtkspell
|
from gi.repository import Gtkspell
|
||||||
HAVE_GTKSPELL = True
|
HAVE_GTKSPELL = True
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
Loading…
Reference in New Issue
Block a user