diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2017-03-24 22:15:12 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2017-03-27 17:18:53 +0100 |
commit | 88c4be92eb5e389f98ee4dc82ab8981e85115af3 (patch) | |
tree | 5711cd5085be1909586089b2348a6f3434930de7 | |
parent | 353135789bc2a5056778bfc4f5167e6dc1efca9c (diff) | |
download | sos-88c4be92eb5e389f98ee4dc82ab8981e85115af3.tar.gz |
[numa] missing import to os.path.join command
"import os.path" missing.
Resolves: #967
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/numa.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/numa.py b/sos/plugins/numa.py index edb649e2..9e0c8fdd 100644 --- a/sos/plugins/numa.py +++ b/sos/plugins/numa.py @@ -14,6 +14,7 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin +import os.path class Numa(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): |