mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Change Broxygen config file format.
"<type> <pattern> <output-file>" seems a more natural order for specifying targets.
This commit is contained in:
parent
98dcfc64a8
commit
e3f74dc319
9 changed files with 9 additions and 9 deletions
|
@ -76,7 +76,7 @@ def generate_config(env, type, pattern):
|
|||
prefix = "{0}-{1}-".format(type, pattern_to_filename_component(pattern))
|
||||
(fd, cfg) = tempfile.mkstemp(suffix=".cfg", prefix=prefix, dir=work_dir)
|
||||
generated_file = "{0}.rst".format(cfg)
|
||||
config = "{0}\t{1}\t{2}".format(type, generated_file, pattern)
|
||||
config = "{0}\t{1}\t{2}".format(type, pattern, generated_file)
|
||||
f = os.fdopen(fd, "w")
|
||||
f.write(config)
|
||||
f.close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue