Skip to content
Snippets Groups Projects
Commit 8a4db6f9 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Add other type of documents to get changed clauses

parent fba1cfe4
No related branches found
No related tags found
No related merge requests found
Pipeline #2149 passed
...@@ -599,7 +599,7 @@ def main(args=None): ...@@ -599,7 +599,7 @@ def main(args=None):
mr = MR(pargs.projectID, pargs.mergeID, pargs.rootURL) mr = MR(pargs.projectID, pargs.mergeID, pargs.rootURL)
for patched_file in mr.patch_set: for patched_file in mr.patch_set:
if patched_file.source_file.startswith("a/TS") or patched_file.source_file.startswith("a/TR"): if patched_file.source_file.startswith("a/TS") or patched_file.source_file.startswith("a/TR") or patched_file.source_file.startswith("a/GR") or patched_file.source_file.startswith("a/GS"):
filename = patched_file.source_file.split("/")[1] filename = patched_file.source_file.split("/")[1]
process(filename, pargs.outDirectory, mr) process(filename, pargs.outDirectory, mr)
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment