Commit 354471be authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Support CR generation for TR

parent 08acb4fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -370,7 +370,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"):
        if patched_file.source_file.startswith("a/TS") or patched_file.source_file.startswith("a/TR"):
            filename = patched_file.source_file.split("/")[1]
            process(filename, pargs.outDirectory, mr)
        else: