mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-05 02:29:22 +01:00
Add fallback if getting supybot.language from registry cache failed.
This commit is contained in:
parent
423a38770b
commit
0828b207be
@ -57,7 +57,10 @@ def getLocaleFromRegistryCache():
|
||||
loaded."""
|
||||
global currentLocale
|
||||
import supybot.registry as registry
|
||||
currentLocale = registry._cache['supybot.language']
|
||||
try:
|
||||
currentLocale = registry._cache['supybot.language']
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
def import_conf():
|
||||
"""Imports the conf into this module"""
|
||||
|
Loading…
Reference in New Issue
Block a user