Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/7.3-dev' into 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
teamblue-e2 committed Feb 20, 2024
2 parents 754dbb1 + eb5a594 commit 95a6177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Components/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ def saveSingle(self, v):
return str(v)

def fromstring(self, value):
ret = [int(x) for x in value.split(self.seperator)]
ret = [int(float(x)) for x in value.split(self.seperator)]
return ret + [int(x[0]) for x in self.limits[len(ret):]]

def onDeselect(self, session):
Expand Down

0 comments on commit 95a6177

Please sign in to comment.