aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Hunsaker <jhunsake@redhat.com>2020-03-27 10:11:35 -0400
committerJake Hunsaker <jhunsake@redhat.com>2020-04-08 09:27:16 -0400
commit273d871e6c42d98c2a856392db5fbcbbec98ba9d (patch)
tree3c5f760f1b59222e4a0f4b23d9fba139dbaf2bf6
parent9e7c041a01d60f92d1cda5d1cbfb3d73029d7e68 (diff)
downloadsos-273d871e6c42d98c2a856392db5fbcbbec98ba9d.tar.gz
[report] Don't override self.sys_tmp in __init__()
Removes an extraneous setting of self.sys_tmp, which is now handled via `SoSComponent`. This was getting overridden to `None` which was causing the final archive creation to fail. Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r--sos/report/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/sos/report/__init__.py b/sos/report/__init__.py
index 945180be..4b3283e3 100644
--- a/sos/report/__init__.py
+++ b/sos/report/__init__.py
@@ -131,7 +131,6 @@ class SoSReport(SoSComponent):
self.archive = None
self._args = args
self.sysroot = "/"
- self.sys_tmp = None
self.preset = None
self.print_header()