We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 68d51bf + a723a1e commit 6b2afc6Copy full SHA for 6b2afc6
main.py
@@ -59,7 +59,7 @@ def get_latest_toltec_supported(self):
59
console.print("Getting latest [yellow bold]toltec supported[/yellow bold] version")
60
site_body_html = requests.get('https://toltec-dev.org/').text # or /raw ?
61
62
- 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()
63
64
def get_latest_update(self):
65
data = self._generate_xml_data()
0 commit comments