Skip to content

Commit

Permalink
Merge pull request opensciencegrid#3393 from matyasselmeci/pr/rundev-…
Browse files Browse the repository at this point in the history
…python3

rundev: use python3
  • Loading branch information
matyasselmeci authored Sep 13, 2023
2 parents f1740b8 + 5e906e0 commit 73fbe32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rundev
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ask_yn () {
export FLASK_ENV=development
cd "$(dirname "$0")"
while true; do
python app.py; ret=$?
python3 app.py; ret=$?
if [[ $ret -eq 0 ]]; then
exit
elif [[ $ret -eq 130 ]]; then # control-C
Expand Down

0 comments on commit 73fbe32

Please sign in to comment.