Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-15 12:03:15 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-15 12:03:15 (GMT)
commitf1979c31bd23f247f422d931883ae3e6b9d6b8b0 (patch)
treea549c1840116df9a835122e7e6c709c2b19ffc87
parentf7e0601101224d06e62060d05ef22e9e94f82d2e (diff)
Fix packages installation
-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)