diff options
Diffstat (limited to 'parse/ft.py')
-rw-r--r-- | parse/ft.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/parse/ft.py b/parse/ft.py index feb338f..4e310b0 100644 --- a/parse/ft.py +++ b/parse/ft.py | |||
@@ -20,7 +20,6 @@ def get_ft_output(data_dir, out_dir, force=False): | |||
20 | if force: | 20 | if force: |
21 | os.remove(output_file) | 21 | os.remove(output_file) |
22 | else: | 22 | else: |
23 | print("ft-output already exists for %s" % data_dir) | ||
24 | return output_file | 23 | return output_file |
25 | 24 | ||
26 | if len(bins) != 0: | 25 | if len(bins) != 0: |
@@ -41,7 +40,6 @@ def get_ft_output(data_dir, out_dir, force=False): | |||
41 | # Analyze will summarize those | 40 | # Analyze will summarize those |
42 | # todo pass in f | 41 | # todo pass in f |
43 | cmd_arr = [conf.BINS['analyze']] | 42 | cmd_arr = [conf.BINS['analyze']] |
44 | print("cmd arr: %s-%s" % (cmd_arr, bins)) | ||
45 | cmd_arr.extend(bins) | 43 | cmd_arr.extend(bins) |
46 | with open(output_file, "w") as f: | 44 | with open(output_file, "w") as f: |
47 | subprocess.call(cmd_arr, cwd=out_dir, stdout=f, stderr=err_file) | 45 | subprocess.call(cmd_arr, cwd=out_dir, stdout=f, stderr=err_file) |