Forgot to close a file...

This commit is contained in:
XapaJIaMnu 2014-09-25 18:38:34 +01:00 committed by Paul Baltescu
parent 1bac666e5f
commit 961578286f

View File

@ -99,6 +99,8 @@ def main():
ret = subprocess.call(train_args, stdout=log_file_write, stderr=log_file_write)
if ret: raise Exception("Training failed")
log_file_write.close()
if __name__ == "__main__":
main()