diff --git a/auto-upgrader/upgrader/updates.py b/auto-upgrader/upgrader/updates.py index a84a08b..8712f8b 100644 --- a/auto-upgrader/upgrader/updates.py +++ b/auto-upgrader/upgrader/updates.py @@ -71,7 +71,7 @@ def check_for_updates(recipe: str) -> bool: def _check_for_updates(recipe: str) -> Optional[dict]: (_, stderr, _) = run(f"devtool check-upgrade-status {recipe}") - update_re = r"INFO:\s+" + recipe + r"\s+([^\s]+)\s+([^\s]+)" + update_re = recipe + r"\s+([^\s]+)\s+([^\s]+)" m = re.search(update_re, stderr) if m: logger.info(f"Update for {recipe}:\t{m.group(1)}\t->\t{m.group(2)}")