Skip to content

Commit

Permalink
Correct syntax error false -> False
Browse files Browse the repository at this point in the history
  • Loading branch information
bboe committed Jul 17, 2021
1 parent 574f66d commit bb0e008
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion errbot/plugin_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit bb0e008

Please sign in to comment.