Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/plugins/fedora.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-26 12:25:50 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-26 12:25:50 (GMT)
commit102c54705debb1dc880b066c9d92261ee4ef6088 (patch)
tree38e2668c6339da4e678329ccf49b9b8d6330924d /devbot/plugins/fedora.py
parent5dcf454dacb1a104fea90735f9a0fa2d76854faf (diff)
Add documentation for the distro specific classes
Diffstat (limited to 'devbot/plugins/fedora.py')
-rw-r--r--devbot/plugins/fedora.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/devbot/plugins/fedora.py b/devbot/plugins/fedora.py
index cd0288d..d5dd814 100644
--- a/devbot/plugins/fedora.py
+++ b/devbot/plugins/fedora.py
@@ -3,8 +3,9 @@ import subprocess
from devbot import command
from devbot import distro
+from devbot.plugins import interfaces
-class PackageManager:
+class PackageManager(interfaces.PackageManager):
def __init__(self, test=False, interactive=True):
self._test = test
self._interactive = interactive
@@ -80,7 +81,7 @@ class PackageManager:
distro.register_package_manager("fedora", PackageManager)
-class DistroInfo:
+class DistroInfo(interfaces.DistroInfo):
def __init__(self):
self.use_lib64 = os.uname()[4] == "x86_64"