diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2019-03-21 09:01:19 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-21 09:59:49 +0000 |
commit | 96c383e7c5da3e4bac3955d872e3ad1b700c6131 (patch) | |
tree | 8884f628325a72665644584ab2f4fe316f22cda2 | |
parent | a608afef3bcb15cb4cc3fb12a14e73f2f30ee015 (diff) | |
download | sos-96c383e7c5da3e4bac3955d872e3ad1b700c6131.tar.gz |
[plugins] remove reference to xmlreport
Resolves: #1604
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-rw-r--r-- | sos/plugins/__init__.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sos/plugins/__init__.py b/sos/plugins/__init__.py index 36efcb0e..85ca3373 100644 --- a/sos/plugins/__init__.py +++ b/sos/plugins/__init__.py @@ -829,12 +829,8 @@ class Plugin(object): self.archive.add_link(outfn, root_symlink) # save info for later - # save in our list self.executed_commands.append({'exe': exe, 'file': outfn_strip, 'binary': 'yes' if binary else 'no'}) - self.commons['xmlreport'].add_command(cmdline=exe, - exitcode=result['status'], - f_stdout=outfn_strip) return os.path.join(self.archive.get_archive_path(), outfn) |