From 102c54705debb1dc880b066c9d92261ee4ef6088 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Mon, 26 Nov 2012 12:25:50 +0000 Subject: Add documentation for the distro specific classes --- (limited to 'devbot/plugins/ubuntu.py') diff --git a/devbot/plugins/ubuntu.py b/devbot/plugins/ubuntu.py index 693a227..d45aeb2 100644 --- a/devbot/plugins/ubuntu.py +++ b/devbot/plugins/ubuntu.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): import apt @@ -81,7 +82,7 @@ class PackageManager: distro.register_package_manager("ubuntu", PackageManager) -class DistroInfo: +class DistroInfo(interfaces.DistroInfo): def __init__(self): self.name = None self.version = None -- cgit v0.9.1