Minor reformatting
This commit is contained in:
parent
9f0353d961
commit
7169c31fff
1 changed files with 3 additions and 2 deletions
|
@ -32,9 +32,10 @@ nginx_body = ''
|
|||
|
||||
for item in codes:
|
||||
code, title, desc = item.groups()
|
||||
if int(code) < 300 or int(code) >= 600: continue
|
||||
if int(code) < 400 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