aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2016-07-03 23:13:43 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2016-07-03 23:13:43 -0400
commit92c35c31c1e577e49be2859a16c748729dc87eb6 (patch)
tree0a5963a177cd4a2e064ab845e2e9537b5c0385b1
parent5fc61b8add1ca9ecd154ecf950a10f18ca3eca2c (diff)
downloadsteuermann-92c35c31c1e577e49be2859a16c748729dc87eb6.tar.gz
All sm_files are converted to absolute paths to avoid annoying failures
-rw-r--r--steuermann/run_all.py2
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