Skip to content

Commit

Permalink
[Ci.py] add missing except block
Browse files Browse the repository at this point in the history
  • Loading branch information
henrylicious committed Jan 14, 2025
1 parent aac1cbb commit 84be6e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/python/Screens/Ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ def InitCiConfig():
choices = fd.read()
if "extra_high" in choices:
highBitrateChoices.append(("extra_high", _("extra high")))
except OSError:
pass
config.ci[slot].highBitrate = ConfigSelection(default="high", choices=highBitrateChoices)
config.ci[slot].highBitrate.slotid = slot
config.ci[slot].highBitrate.addNotifier(setCIBitrate)
Expand Down

0 comments on commit 84be6e0

Please sign in to comment.