diff options
author | Bryn M. Reeves <bmr@errorists.org> | 2012-12-05 14:26:44 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@errorists.org> | 2012-12-05 14:26:44 +0000 |
commit | c6644bf56866e284ec4bbc8dbf64208eed77c6c4 (patch) | |
tree | 6df0b2a421acbaaa3e2764a104353960001bc309 | |
parent | bda29f9f42578b374d51ee375136034bb7215baf (diff) | |
download | sos-c6644bf56866e284ec4bbc8dbf64208eed77c6c4.tar.gz |
Add missing import statement to libvirt module
-rw-r--r-- | sos/plugins/libvirt.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/libvirt.py b/sos/plugins/libvirt.py index af5b3f77..3408615f 100644 --- a/sos/plugins/libvirt.py +++ b/sos/plugins/libvirt.py @@ -13,6 +13,7 @@ ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin +import glob class libvirt(Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin): """libvirt-related information |