[+] Print errors

This commit is contained in:
Hykilpikonna
2022-07-07 18:11:54 -04:00
parent 237a11e5c4
commit 282c014a7f
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -10,5 +10,5 @@ Repos:
WhateverGreen: https://github.com/acidanthera/WhateverGreen
RealtekRTL8111: https://github.com/Mieze/RTL8111_driver_for_OS_X
AirportItlwm: https://github.com/OpenIntelWireless/itlwm
CpuTscSync: https://github.com/acidanthera/CpuTscSync
+2 -1
View File
@@ -176,7 +176,8 @@ def run():
def get_latest(k: Kext):
try:
return get_latest_release(k, repos, args.pre)
except AssertionError:
except AssertionError as e:
print(e)
return None
latests = thread_map(get_latest, kexts, desc='Fetching Updates'.ljust(bar_len), max_workers=32, bar_format='{desc} {rate_fmt} {remaining} [{bar}] {percentage:.0f}%', ascii=' #', unit=' pkg')