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
cbeec1aa
Commit
cbeec1aa
authored
Nov 06, 2015
by
aknecht2
Browse files
Fixed asterisk escaping for logic strings.
parent
9f1ee79b
Changes
2
Hide whitespace changes
Inline
Side-by-side
ih/imgproc.py
View file @
cbeec1aa
...
...
@@ -1094,6 +1094,7 @@ class Image(object):
up complex filtering into multiple steps for readability. Finally, despite
the fact this function solves arbitrary logic, it is very fast.
"""
print
logic
filter
=
ColorFilter
(
logic
)
roi
=
self
.
_loadROI
(
roi
)
self
.
image
=
filter
.
apply
(
self
.
image
,
roi
)
...
...
ih/workflow.py
View file @
cbeec1aa
...
...
@@ -150,9 +150,9 @@ class Workflow(object):
arglist
.
append
(
outputs
[
str
(
arguments
[
arg
])][
"file"
])
else
:
if
"osg"
in
self
.
config
:
arglist
.
append
(
"'"
+
str
(
arguments
[
arg
])
+
"'"
)
arglist
.
append
(
"'"
+
str
(
arguments
[
arg
])
.
replace
(
"*"
,
"\*"
)
+
"'"
)
else
:
arglist
.
append
(
str
(
arguments
[
arg
]))
arglist
.
append
(
str
(
arguments
[
arg
]))
.
replace
(
"*"
,
"\*"
)
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