Skip to content

Commit

Permalink
Merge pull request #3820 from adewit/patch-1
Browse files Browse the repository at this point in the history
Check_dag_success.py should run in python3 in master
  • Loading branch information
lviliani authored Jan 9, 2025
2 parents 0725f62 + 24c7dc2 commit 1eaca6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/Powheg/check_dag_success.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import sys
import re

Expand Down Expand Up @@ -34,4 +34,4 @@
if success_rate > 0.8:
sys.exit(0)
else:
sys.exit(1)
sys.exit(1)

0 comments on commit 1eaca6e

Please sign in to comment.