Files
zulip/tools/pretty-print-html
Anders Kaseorg c734bbd95d python: Modernize legacy Python 2 syntax with pyupgrade.
Generated by `pyupgrade --py3-plus --keep-percent-format` on all our
Python code except `zthumbor` and `zulip-ec2-configure-interfaces`,
followed by manual indentation fixes.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-09 16:43:22 -07:00

25 lines
696 B
Python
Executable File

#!/usr/bin/env python3
from typing import List
from lib.pretty_print import pretty_print_html
import sys
def clean_html(filenames):
# type: (List[str]) -> None
for fn in filenames:
print('Prettifying: %s' % (fn,))
with open(fn) as f:
html = f.read()
phtml = pretty_print_html(html)
with open(fn, 'w') as f:
f.write(phtml)
if __name__ == '__main__':
# If command arguments are provided, we only check those filenames.
# Otherwise, we display a message
filenames = sys.argv[1:]
if filenames:
clean_html(filenames)
sys.exit(0)
print('Please specify at least one file to prettify')
sys.exit(1)