Commit 0606bdc5f8d4f49a0392217a6d6eaf368c82635b

Authored by Bartłomiej Nitoń
1 parent 42029f34

Fix single file processing by thrift_client

Showing 1 changed file with 1 additions and 1 deletions
python/thrift_client.py
... ... @@ -85,7 +85,7 @@ def go():
85 85 if os.path.isdir(opts.input):
86 86 process_directory(opts.input, opts, args)
87 87 elif os.path.isfile(opts.input):
88   - process_file(opts, args)
  88 + process_file(opts.input, opts, args, opts.output)
89 89 else:
90 90 process_text(sys.stdin.read(), opts, args)
91 91  
... ...