diff --git a/jtlc b/jtlc index c6865e2..22d828c 100755 --- a/jtlc +++ b/jtlc @@ -45,6 +45,8 @@ def main(argv): f = open(tfname, 'r') content = f.read() f.close() + if args.output_file is not None: + ofname = args.output_file f = open(ofname, 'w') f.write(content) f.close()