Skip to content

Commit

Permalink
Merge pull request #3461 from MrServo/master
Browse files Browse the repository at this point in the history
[OSCamInfo] bugfix: no attribute 'activeComponents'
  • Loading branch information
jbleyel authored Nov 30, 2024
2 parents d282302 + 03051f7 commit 82ebefc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/Screens/OScamInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def displayLog(self):
self["logtext"].moveBottom()
else:
self.loop.stop()
self["buildinfos"].setText(_("Unexpected error accessing WebIF: %s") % result.decode(encoding="latin-1", errors="ignore"))
self["buildinfos"].setText(_("Unexpected error accessing WebIF: %s") % result)

def showHideKeyOk(self):
idx = self["outlist"].getSelectedIndex()
Expand Down Expand Up @@ -793,7 +793,7 @@ def displayLog(self):
self["logtext"].moveBottom()
else:
self.loop.stop()
self.session.open(MessageBox, _("Unexpected error accessing WebIF: %s" % result), MessageBox.TYPE_ERROR, timeout=10, close_on_any_key=True)
self["logtext"].setText(_("Unexpected error accessing WebIF: %s" % result))

def keyPageDown(self):
self["logtext"].pageDown()
Expand Down

0 comments on commit 82ebefc

Please sign in to comment.