Commit 55dd1135 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix indentation.

parent cb29ab44
...@@ -1154,20 +1154,20 @@ def main(): ...@@ -1154,20 +1154,20 @@ def main():
out = codecs.open(args.out, 'w', encoding=out_encoding) out = codecs.open(args.out, 'w', encoding=out_encoding)
with out: with out:
generator(out, out_encoding, per_site, args, default_site, { generator(out, out_encoding, per_site, args, default_site, {
'period': period, 'period': period,
'decimator': decimator, 'decimator': decimator,
'date_format': date_format, 'date_format': date_format,
'placeholder_delta': placeholder_delta, 'placeholder_delta': placeholder_delta,
'graph_period': graph_period, 'graph_period': graph_period,
}, { }, {
'start_time': start_time, 'start_time': start_time,
'end_parsing_time': end_parsing_time, 'end_parsing_time': end_parsing_time,
'file_count': file_count, 'file_count': file_count,
'all_lines': all_lines, 'all_lines': all_lines,
'malformed_lines': malformed_lines, 'malformed_lines': malformed_lines,
'no_url_lines': no_url_lines, 'no_url_lines': no_url_lines,
'skipped_lines': skipped_lines, 'skipped_lines': skipped_lines,
'skipped_user_agent': skipped_user_agent, 'skipped_user_agent': skipped_user_agent,
}) })
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment