Skip to content

Commit c7bf806

Browse files
Fix combine_training_corpus.py
My last patch to the file refactoring it into a separate library inadvertantly broke the actual script as I removed the indentation from the statement calling into the library. This means the library never actually gets called with the correct arguments and it doesn't end up working properly.
1 parent 52a58d9 commit c7bf806

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler_opt/tools/combine_training_corpus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ def main(argv):
4848
if len(argv) > 1:
4949
raise app.UsageError('Too many command-line arguments.')
5050

51+
combine_training_corpus_lib.combine_corpus(FLAGS.root_dir)
5152

52-
combine_training_corpus_lib.combine_corpus(FLAGS.root_dir)
5353

5454
if __name__ == '__main__':
5555
app.run(main)

0 commit comments

Comments
 (0)