diff options
author | Tony Sun <tony.sun427@gmail.com> | 2020-08-28 10:55:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-28 10:55:18 -0700 |
commit | 44aa9eab00f7f54d779180bb1760532d3d1a0a8a (patch) | |
tree | e36a0f6b37439080eea4f05cacf8ead595adedab | |
parent | 7995c26a675260fee10a70d3d99c341935d29b6f (diff) | |
parent | 79c3333ceb2fa094315ce7a897ef262be98bbe87 (diff) | |
download | couchdb-44aa9eab00f7f54d779180bb1760532d3d1a0a8a.tar.gz |
Merge pull request #3113 from apache/backport-python-format
update dev/run formatting to adhere to python format checks
-rwxr-xr-x | dev/run | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -427,7 +427,10 @@ def boot_haproxy(ctx): def hack_default_ini(ctx, node, contents): contents = re.sub( - "^\[httpd\]$", "[httpd]\nenable = true", contents, flags=re.MULTILINE, + "^\[httpd\]$", + "[httpd]\nenable = true", + contents, + flags=re.MULTILINE, ) if ctx["enable_erlang_views"]: |