Minor reformatting
This commit is contained in:
parent
9f0353d961
commit
7a501789b6
1 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,8 @@ for item in codes:
|
|||
code, title, desc = item.groups()
|
||||
if int(code) < 300 or int(code) >= 600: continue
|
||||
with error.joinpath(f'{code}.html').open('w') as html:
|
||||
html.write(root_html.format(code=code, title=title, desc=desc, style=root_css))
|
||||
html.write(root_html.format(
|
||||
code=code, title=title, desc=desc, style=root_css))
|
||||
nginx_head += f'error_page {code} @error{code};\n'
|
||||
nginx_body += f'location @error{code} {{\n'\
|
||||
f'root {error.resolve()};\n'\
|
||||
|
|
Reference in a new issue