From 0cf36dd23dce407a38593caa2df4002ea27342dd Mon Sep 17 00:00:00 2001 From: LraiZer Date: Tue, 12 Mar 2024 21:07:57 +0000 Subject: [PATCH] change range to 16 --- lib/python/Components/Converter/EventName.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/Components/Converter/EventName.py b/lib/python/Components/Converter/EventName.py index 80f32fb6dcc..0e8a737d7bd 100644 --- a/lib/python/Components/Converter/EventName.py +++ b/lib/python/Components/Converter/EventName.py @@ -31,7 +31,7 @@ def imageRating(self, age): return "ratings/ETSI-%d.png" % age def __init__(self): - self.update([(i, (self.shortRating(c), self.longRating(c), self.imageRating(c))) for i, c in enumerate(range(0, 18))]) + self.update([(i, (self.shortRating(c), self.longRating(c), self.imageRating(c))) for i, c in enumerate(range(0, 16))]) class AusClassifications(dict):