Skip to content

Commit

Permalink
Fix boot loop
Browse files Browse the repository at this point in the history
  • Loading branch information
teamblue-e2 committed Oct 16, 2023
1 parent c62de01 commit 8927139
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/python/Components/About.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def GetIPsFromNetworkInterfaces():
max_possible *= 2
else:
break
namestr = names.tostring()
namestr = names.tobytes()
ifaces = []
for i in list(range(0, outbytes, struct_size)):
iface_name = bytes.decode(namestr[i:i + 16]).split('\0', 1)[0].encode('ascii')
Expand Down
3 changes: 2 additions & 1 deletion lib/python/Components/UsageConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
from Components.config import ConfigSubsection, ConfigYesNo, config, ConfigSelection, ConfigText, ConfigNumber, ConfigSet, ConfigLocations, ConfigSelectionNumber, ConfigClock, ConfigSlider, ConfigEnableDisable, ConfigSubDict, ConfigDictionarySet, ConfigInteger, ConfigPassword, ConfigBoolean, ConfigIP
from Components.Console import Console
from Tools.Directories import defaultRecordingLocation
from enigma import setTunerTypePriorityOrder, setPreferredTuner, setSpinnerOnOff, setEnableTtCachingOnOff, eEnv, eDVBDB, Misc_Options, eBackgroundFileEraser, eServiceEvent
from enigma import setTunerTypePriorityOrder, setPreferredTuner, setSpinnerOnOff, setEnableTtCachingOnOff, eEnv, eDVBDB, Misc_Options, eBackgroundFileEraser, eServiceEvent, eDVBLocalTimeHandler, eEPGCache
from Components.About import GetIPsFromNetworkInterfaces
from Components.NimManager import nimmanager
from Components.Renderer.FrontpanelLed import ledPatterns, PATTERN_ON, PATTERN_OFF, PATTERN_BLINK
from Components.ServiceList import refreshServiceList
Expand Down

0 comments on commit 8927139

Please sign in to comment.