Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] Reformat exported fields documentation #12242

Merged
merged 9 commits into from
Jun 21, 2019
Prev Previous commit
Fixing python script formatting to make pep8 linter happy
  • Loading branch information
ycombinator committed Jun 21, 2019
commit 215f22dc05ec060eac6cf5f498fc27a48a928c7a
2 changes: 1 addition & 1 deletion libbeat/scripts/generate_fields_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def fields_to_asciidoc(input, output, beat):
name = field["name"]
if name in fields:
assert field["type"] == (fields[name]["type"],
'field "{}" redefined with different type "{}"'.format(
'field "{}" redefined with different type "{}"'.format(
name, field["type"]))
fields[name].update(field)
else:
Expand Down