aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Wen <jian.w.wen@oracle.com>2017-01-19 14:05:01 +0800
committerBryn M. Reeves <bmr@redhat.com>2017-03-27 18:31:10 +0100
commitda7ccd3f135f6742220500f911932ed070ea8e7c (patch)
tree1d85d03e137b697369028244854805e55062c0ea
parente0c2916ae70294fae2162c51d57a5d87464157a0 (diff)
downloadsos-da7ccd3f135f6742220500f911932ed070ea8e7c.tar.gz
[xen] fix two typos
Resolves: #914 Signed-off-by: Jacob Wen <jian.w.wen@oralce.com>
-rw-r--r--sos/plugins/xen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/xen.py b/sos/plugins/xen.py
index 096670ce..f078c6ea 100644
--- a/sos/plugins/xen.py
+++ b/sos/plugins/xen.py
@@ -44,7 +44,7 @@ class Xen(Plugin, RedHatPlugin):
return (self.determine_xen_host() == "baremetal")
def is_running_xenstored(self):
- xs_pid = self.call_ext_prof("pidof xenstored")['ouput']
+ xs_pid = self.call_ext_prog("pidof xenstored")['output']
xs_pidnum = re.split('\n$', xs_pid)[0]
return xs_pidnum.isdigit()