From c1d07e21459a3bc538cc61d10b1a6ba22bec03ba Mon Sep 17 00:00:00 2001 From: Pavel Moravec Date: Fri, 7 Sep 2018 21:25:03 +0200 Subject: [openstack_glance] fix typo from commit 2b29530 false -> False Resolves: #1420 Signed-off-by: Pavel Moravec --- sos/plugins/openstack_glance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/openstack_glance.py b/sos/plugins/openstack_glance.py index bfb5f9fe..d3b987e0 100644 --- a/sos/plugins/openstack_glance.py +++ b/sos/plugins/openstack_glance.py @@ -88,7 +88,7 @@ class OpenStackGlance(Plugin): for line in container_status['output'].splitlines(): if line.endswith("glance_api"): return True - return false + return False def apply_regex_sub(self, regexp, subst): self.do_path_regex_sub("/etc/glance/*", regexp, subst) -- cgit