Skip to content

Commit

Permalink
change range to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
LraiZer authored and Huevos committed Mar 12, 2024
1 parent e7188fb commit 0cf36dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Components/Converter/EventName.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 0cf36dd

Please sign in to comment.