Blob Blame History Raw
From e4ece6569221f1833d3fb621c26f19c23662b329 Mon Sep 17 00:00:00 2001
From: Pavel Moravec <pmoravec@redhat.com>
Date: Wed, 4 Dec 2019 12:09:20 +0100
Subject: [PATCH] [container_log] fix unscoped 'logdir' variable

"sosreport -o container_log --all-logs" fails on global name 'logdir'
is not defined.

Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
---
 sos/plugins/container_log.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sos/plugins/container_log.py b/sos/plugins/container_log.py
index 6208ecc8..739c9956 100644
--- a/sos/plugins/container_log.py
+++ b/sos/plugins/container_log.py
@@ -21,7 +21,7 @@ class ContainerLog(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
 
     def setup(self):
         if self.get_option('all_logs'):
-            self.add_copy_spec(logdir)
+            self.add_copy_spec(self.logdir)
         else:
             self.collect_subdirs()
 
-- 
2.21.3