Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
Diffstat (limited to 'devbot')
-rw-r--r--devbot/system.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/system.py b/devbot/system.py
index b12190a..46529e5 100644
--- a/devbot/system.py
+++ b/devbot/system.py
@@ -85,7 +85,7 @@ def run_checks(package_manager, checks, packages):
for package in package_list:
# Might be none, if so skip on this distro_name
- if package and package not in packages:
+ if package and package not in to_install:
to_install.append(package)
else:
failed_checks.append(check)