aboutsummaryrefslogtreecommitdiffstats
path: root/parse/sched.py
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-02-07 11:21:23 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-02-07 11:21:23 -0500
commit39020cf5ae3030bc15035925a0c72eb44eea67b7 (patch)
treefb82b339c1e5c14334f8d9839f8d836b120fbb08 /parse/sched.py
parentd524da9bd072ad1be4ac0d633e3e783094ddc2d7 (diff)
Added gen_exps.py script.
Diffstat (limited to 'parse/sched.py')
-rw-r--r--parse/sched.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse/sched.py b/parse/sched.py
index 512ac73..ba0df5e 100644
--- a/parse/sched.py
+++ b/parse/sched.py
@@ -146,7 +146,7 @@ def extract_sched_data(result, data_dir, work_dir):
146 bin_files = conf.FILES['sched_data'].format(".*") 146 bin_files = conf.FILES['sched_data'].format(".*")
147 output_file = "%s/out-st" % work_dir 147 output_file = "%s/out-st" % work_dir
148 148
149 bins = [f for f in os.listdir(data_dir) if re.match(bin_files, f)] 149 bins = ["%s/%s" % (data_dir,f) for f in os.listdir(data_dir) if re.match(bin_files, f)]
150 if not len(bins): 150 if not len(bins):
151 return 151 return
152 152