From bb0e00806da9105df262b8cadc59e5e385ef3b2f Mon Sep 17 00:00:00 2001 From: Bryce Boe Date: Wed, 14 Jul 2021 21:23:24 -0700 Subject: [PATCH] Correct syntax error `false` -> `False` --- CHANGES.rst | 1 + errbot/plugin_manager.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8a9570b38f..51b35afe6b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,7 @@ fixes: - core: success handling for update_repos (#1520) - core/plugins: cascade dependency plugins (#1519) - core/plugins: reload all repo plugins when updating a repo (#1521) +- plugin_manager: correct syntax error (#1524) v6.1.8 (2021-06-21) ------------------- diff --git a/errbot/plugin_manager.py b/errbot/plugin_manager.py index 2403e74f56..3a3ddb8c3f 100644 --- a/errbot/plugin_manager.py +++ b/errbot/plugin_manager.py @@ -68,7 +68,7 @@ def install_packages(req_path: Path): def is_docker(): if not os.path.exists("/proc/1/cgroup"): - return false + return False with open("/proc/1/cgroup") as d: return "docker" in d.read()