diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-03 23:13:43 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-03 23:13:43 -0400 |
commit | 92c35c31c1e577e49be2859a16c748729dc87eb6 (patch) | |
tree | 0a5963a177cd4a2e064ab845e2e9537b5c0385b1 | |
parent | 5fc61b8add1ca9ecd154ecf950a10f18ca3eca2c (diff) | |
download | steuermann-92c35c31c1e577e49be2859a16c748729dc87eb6.tar.gz |
All sm_files are converted to absolute paths to avoid annoying failures
-rw-r--r-- | steuermann/run_all.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |