aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2017-03-14 17:46:17 +0000
committerBryn M. Reeves <bmr@redhat.com>2017-03-14 17:46:17 +0000
commit27fbeda9212642f3944a8984cafe9edf99da5b5a (patch)
treed5eb0a740a72d65870e9106e7b46cd3cbf104367
parent368db9a60640055a44a1ab655d17423966617e3c (diff)
downloadsos-27fbeda9212642f3944a8984cafe9edf99da5b5a.tar.gz
[numa] fix copy spec list
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/numa.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/numa.py b/sos/plugins/numa.py
index dde8c612..edb649e2 100644
--- a/sos/plugins/numa.py
+++ b/sos/plugins/numa.py
@@ -44,8 +44,8 @@ class Numa(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
numa_path = "/sys/devices/system/node"
self.add_copy_spec([
- os.path.join(numa_path, "node*/meminfo")
- os.path.join(numa_path, "node*/cpulist")
+ os.path.join(numa_path, "node*/meminfo"),
+ os.path.join(numa_path, "node*/cpulist"),
os.path.join(numa_path, "node*/distance")
])