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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -599,7 +599,7 @@ def main(args=None):
    mr = MR(pargs.projectID, pargs.mergeID, pargs.rootURL)

    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]
            process(filename, pargs.outDirectory, mr)
        else: