fix "TypeError: 'tuple' object does not support item assignment"
This commit is contained in:
parent
3c9f9901e6
commit
2f608f67e6
@ -291,7 +291,8 @@ class GrampsLocale(object):
|
|||||||
return False
|
return False
|
||||||
lang = self.check_available_translations(locale[0])
|
lang = self.check_available_translations(locale[0])
|
||||||
if not lang and locale[0].startswith('en'):
|
if not lang and locale[0].startswith('en'):
|
||||||
locale[0] = lang = 'en_GB'
|
locale = ('en_GB', 'UTF-8')
|
||||||
|
lang = 'en_GB'
|
||||||
if not lang:
|
if not lang:
|
||||||
return False
|
return False
|
||||||
self.lang = locale[0]
|
self.lang = locale[0]
|
||||||
|
Loading…
Reference in New Issue
Block a user