Advertisement
Guest User

Patch for sugar-build

a guest
Dec 1st, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.46 KB | None | 0 0
  1. checker = checkers[check["checker"]]
  2. if checker(check["check"]):
  3.     dd = check["name"]
  4.     if (dd in packages) and (distro_info.name in packages[dd]):
  5.         for package in packages[check["name"]][distro_info.name]:
  6.             # Might be none, if so skip on this distro_name
  7.             if package and package not in to_install:
  8.                 to_install.append(package)
  9.     else:
  10.         packages_not_found.append(check)
  11.  
  12.     failed_checks.append(check)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement