diff options
author | Louis Bouchard <louis.bouchard@canonical.com> | 2013-04-15 15:36:04 +0200 |
---|---|---|
committer | Louis Bouchard <louis.bouchard@canonical.com> | 2013-04-15 15:36:04 +0200 |
commit | e7ab7388c4a1764b650868e67a187e60f07ccde3 (patch) | |
tree | fac5ed4f676dfb1fe520d05134e872c53dd4b542 | |
parent | 9160ec527bb361945fa747c3071d18066491366b (diff) | |
parent | d382f43e57bfd2b7ff70aeaf55a53331b47647c2 (diff) | |
download | sos-e7ab7388c4a1764b650868e67a187e60f07ccde3.tar.gz |
Merge branch 'fix_packages_gh126' to stay current with upstream
-rw-r--r-- | sos/policies/debian.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sos/policies/debian.py b/sos/policies/debian.py index 94b089f3..8423f175 100644 --- a/sos/policies/debian.py +++ b/sos/policies/debian.py @@ -7,13 +7,13 @@ class DebianPolicy(LinuxPolicy): distro = "Debian" vendor = "the Debian project" vendor_url = "http://www.debian.org/" - report_name = "" - ticket_number = "" - package_manager = PackageManager("dpkg-query -W -f='${Package}|${Version}\\n' \*") - valid_subclasses = [DebianPlugin] def __init__(self): super(DebianPolicy, self).__init__() + self.report_name = "" + self.ticket_number = "" + self.package_manager = PackageManager("dpkg-query -W -f='${Package}|${Version}\\n' \*") + self.valid_subclasses = [DebianPlugin] @classmethod def check(self): |