Skip to content

Commit

Permalink
fix: Case-insensitive ChromeOS editions
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaVandaele committed Jan 3, 2024
1 parent 13ee6f9 commit 2eaa688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/updaters/ChromeOS.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ChromeOS(GenericUpdater):

def __init__(self, folder_path: str, edition: str) -> None:
self.valid_editions = ["ltc", "ltr", "stable"]
self.edition = edition
self.edition = edition.lower()

file_path = os.path.join(folder_path, FILE_NAME)
super().__init__(file_path)
Expand Down

0 comments on commit 2eaa688

Please sign in to comment.