Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/distro.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-15 09:58:02 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-15 09:58:02 (GMT)
commit7d825da2281af4750de43bfdbd4cfa231402e804 (patch)
tree12efb77f3a05081ae317b7051bf095e152c97328 /devbot/distro.py
parent7d6e543227afa6a82a5ff231e7c55590e87190e3 (diff)
Missing self in __init__
Diffstat (limited to 'devbot/distro.py')
-rw-r--r--devbot/distro.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/devbot/distro.py b/devbot/distro.py
index 7c4605f..3c2872b 100644
--- a/devbot/distro.py
+++ b/devbot/distro.py
@@ -4,7 +4,7 @@ import subprocess
from devbot import command
class FedoraPackageManager:
- def __init__(test=False):
+ def __init__(self, test=False):
self._test = test
def install_packages(self, packages):
@@ -76,7 +76,7 @@ class FedoraPackageManager:
self._find_deps(dep_package, result)
class UbuntuPackageManager:
- def __init__(test=False):
+ def __init__(self, test=False):
self._test = test
def install_packages(self, packages):