From 92c35c31c1e577e49be2859a16c748729dc87eb6 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 3 Jul 2016 23:13:43 -0400 Subject: All sm_files are converted to absolute paths to avoid annoying failures --- steuermann/run_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'steuermann/run_all.py') diff --git a/steuermann/run_all.py b/steuermann/run_all.py index 48a5804..661f6fd 100644 --- a/steuermann/run_all.py +++ b/steuermann/run_all.py @@ -91,7 +91,7 @@ def main() : nodes.saved_conditions[k] = eval(v) ''' - sm_files = [a for a in args if ('--' not in a and '=' not in a)] + sm_files = [os.path.abspath(a) for a in args if ('--' not in a and '=' not in a)] di_nodes = nodes.read_file_list( sm_files ) xnodes = di_nodes.node_index -- cgit