Skip to content

Commit b96b87b

Browse files
Raul Gutierrezbsipocz
authored andcommitted
Fix proposal_id filter.
1 parent b95284c commit b96b87b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/jwst/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ def __get_proposal_id_condition(self, value=None):
986986
raise ValueError("proposal_id must be string")
987987

988988
else:
989-
condition = " AND proposal_id LIKE '%FILTER="+value.upper()+"%' "
989+
condition = " AND proposal_id ILIKE '%"+value+"%' "
990990
return condition
991991

992992
def __get_artifact_producttype_condition(self, product_type=None):

0 commit comments

Comments
 (0)