Skip to content

Commit

Permalink
[FIX] Fixed a typo in filtering pipeline name (#351)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmanaem authored Oct 15, 2024
1 parent e3e1429 commit 1313601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/utility.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def create_query(
if pipeline_name is not None:
imaging_session_level_filters += (
"\n"
+ f"{create_bound_filter(PIPELINE_NAME.var)} && (?{PIPELINE_NAME.var} = {pipeline_name})."
+ f"{create_bound_filter(PIPELINE_NAME.var)} && ?{PIPELINE_NAME.var} = {pipeline_name})."
)

# In case a user specified the pipeline version but not the name
Expand Down

0 comments on commit 1313601

Please sign in to comment.