Skip to content

Commit

Permalink
add path-sep to stdin-splitting
Browse files Browse the repository at this point in the history
  • Loading branch information
ninsbl authored Sep 27, 2024
1 parent 419980d commit dd083e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actinia_core/core/common/process_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

def get_param_stdin_part(text):
"""Function to get method and filter from parameter value"""
for delimiter in ["::", " ", "+", "-", "*", ":", "(", ")"]:
for delimiter in {"::", " ", "+", "-", "*", ":", "(", ")", "/", "\\"}:
text = text.split(delimiter, 1)[0]
return text

Expand Down

0 comments on commit dd083e7

Please sign in to comment.