Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
aknecht2
Image Harvest
Commits
01269a68
Commit
01269a68
authored
Nov 09, 2015
by
aknecht2
Browse files
OSG argparse fix.
parent
1137d1ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
ih/workflow.py
View file @
01269a68
...
...
@@ -149,7 +149,10 @@ class Workflow(object):
elif
str
(
arguments
[
arg
])
in
outputs
:
arglist
.
append
(
outputs
[
str
(
arguments
[
arg
])][
"file"
])
else
:
arglist
.
append
(
str
(
arguments
[
arg
]))
if
"osg"
in
self
.
config
:
arglist
.
append
(
"'"
+
str
(
arguments
[
arg
])
+
"'"
)
else
:
arglist
.
append
(
str
(
arguments
[
arg
]))
self
.
jobs
[
dax
][
jobname
].
addArguments
(
*
arglist
)
if
dependencies
:
for
depend
in
dependencies
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment