Lines Matching refs:file
6 # you may not use this file except in compliance with the License.
17 # Args: <CHANGES-file> <tag> <output-file>
18 # Updates an output file with changelog from the given CHANGES file and tag.
19 # - search for first line matching <tag> in file <CHANGES-file>
21 # - writes all the lines in between those 2 tags into <output-file>
58 logging.error("usage: {} <CHANGES-path> <tag> <output-file>".format(sys.argv[0]))
67 with open(changes_path, "r") as file:
68 for line in file.readlines():