diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-10-29 09:59:35 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-10-29 09:59:35 -0400 |
commit | 5b50c58ea4881dd185897dfa93860c60f551d815 (patch) | |
tree | 1eee3271b5ab9fad7774a073110287b27e4d32fd /parse/ft.py | |
parent | f1e90e1a5f7b148cf8113fe463615bd95d5bf26d (diff) |
Prettied up parse output.
Diffstat (limited to 'parse/ft.py')
-rw-r--r-- | parse/ft.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/parse/ft.py b/parse/ft.py index 2c2b597..feb338f 100644 --- a/parse/ft.py +++ b/parse/ft.py | |||
@@ -41,6 +41,7 @@ def get_ft_output(data_dir, out_dir, force=False): | |||
41 | # Analyze will summarize those | 41 | # Analyze will summarize those |
42 | # todo pass in f | 42 | # todo pass in f |
43 | cmd_arr = [conf.BINS['analyze']] | 43 | cmd_arr = [conf.BINS['analyze']] |
44 | print("cmd arr: %s-%s" % (cmd_arr, bins)) | ||
44 | cmd_arr.extend(bins) | 45 | cmd_arr.extend(bins) |
45 | with open(output_file, "w") as f: | 46 | with open(output_file, "w") as f: |
46 | subprocess.call(cmd_arr, cwd=out_dir, stdout=f, stderr=err_file) | 47 | subprocess.call(cmd_arr, cwd=out_dir, stdout=f, stderr=err_file) |