Skip to content

Commit

Permalink
Fix shebang
Browse files Browse the repository at this point in the history
This script requires python 3. On most Linux distributions 'python' is a symlink to python 2. The only exception I'm aware of is Arch, which symlinks to python 3 instead. Luckily a more specific 'python3' is available on all distributions.

Fixes './start_ofd.py' on Ubuntu and other Linux distributions.
  • Loading branch information
Balgden authored Jun 8, 2020
1 parent f617397 commit 7b812da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion start_ofd.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import tests.main_test as main_test

main_test.version_check()
Expand Down

0 comments on commit 7b812da

Please sign in to comment.