Skip to content

Commit

Permalink
Fix load default setting for findSimilarVer
Browse files Browse the repository at this point in the history
  • Loading branch information
zam1024t committed Sep 15, 2017
1 parent ec7b04f commit 5cfbe08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Localize.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def setLocale(locale, force = False):
sDir = ''
d = os.path.join(mDir, version)
ld = os.path.join(d, locale)
if (not os.path.isdir(ld)) and getSetting('findSimilarVer'):
if (not os.path.isdir(ld)) and getSetting('findSimilarVer', True):
sDir = findSimilarVer()
if not sDir:
return
Expand Down

0 comments on commit 5cfbe08

Please sign in to comment.