Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_latest_toltec_supported(self):
console.print("Getting latest [yellow bold]toltec supported[/yellow bold] version")
site_body_html = requests.get('https://toltec-dev.org/').text # or /raw ?

return re.search('Toltec only supports OS builds up to and including OS(.*)\. You will soft-brick', site_body_html).group(1).strip()
return re.search('Toltec does not support OS builds newer than (.*)\. You will soft-brick', site_body_html).group(1).strip()

def get_latest_update(self):
data = self._generate_xml_data()
Expand Down