Skip to content

Commit

Permalink
Merge pull request #3844 from cms-sw/corrif
Browse files Browse the repository at this point in the history
correct if syntax
  • Loading branch information
efeyazgan authored Feb 4, 2025
2 parents a5dec68 + 6eb3a7f commit c90aa20
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/utils/request_fragment_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,8 +878,9 @@ def root_requests_from_ticket(ticket_prepid, include_docs=False):
gp_size = len(gridpack_cvmfs_path_tmp)

# additional data set name check for 2024 campaigns
if ("Run3" in pi or "RunIII" in pi) and ("Summer24" or "Winter25") in pi:
if ("Run3" in pi or "RunIII" in pi) and ("Summer24" in pi or "Winter25" in pi):
valid, message, feedback = validate_dataset_name(dn)
print(valid, message, feedback)
if not valid:
print("-----------------------------")
print(message)
Expand Down

0 comments on commit c90aa20

Please sign in to comment.