Skip to content

Commit c5c2a5f

Browse files
committed
Fix for ConfigHelpers bug and invalidVersion
Traceback (most recent call last): File "bash\balt.pyo", line 414, in <lambda> File "bash\basher\app_buttons.pyo", line 731, in Execute File "bash\basher\frames.pyo", line 410, in __init__ File "bash\basher\frames.pyo", line 452, in CheckMods File "bash\bosh\mods_metadata.pyo", line 490, in checkMods TypeError: sequence item 0: expected string or Unicode, float found
1 parent e0f66e6 commit c5c2a5f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Mopy/bash/bosh/mods_metadata.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,7 @@ def checkMods(self, showModList=False, showRuleSets=False, showNotes=False,
486486
u'=== ' + _(u'Mods that need cleaning with xEdit'))
487487
log(_(u'Congratulations all mods appear clean.'))
488488
if invalidVersion:
489-
ver_list = u', '.join(
490-
sorted(bush.game.esp.validHeaderVersions))
489+
ver_list = u', '.join(sorted(str(v) for v in bush.game.esp.validHeaderVersions))
491490
log.setHeader(
492491
u'=== ' + _(u'Mods with non standard TES4 versions'))
493492
log(_(u"Following mods have a TES4 version that isn't "

0 commit comments

Comments
 (0)