From e6f2f6b74e4e0e9f18b5e38a6edf409ccfe21731 Mon Sep 17 00:00:00 2001 From: Louis Bouchard Date: Thu, 11 Apr 2013 15:56:30 +0200 Subject: Fix main class missing setup --- sos/plugins/networking.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index fa6aeaa2..595dcd9e 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -22,6 +22,7 @@ class Networking(Plugin): plugin_name = "networking" def setup(self): + super(Networking, self).setup() def get_bridge_name(self,brctl_out): """Return a list for which items are bridge name according to the -- cgit