Skip to content

Commit

Permalink
Corrected import statement (#2354)
Browse files Browse the repository at this point in the history
* Corrected import statement

This is needed on Ubuntu 20.04

* Changed shebang line to use the same for all files in bin
  • Loading branch information
mwetter authored Feb 9, 2021
1 parent 2c6fa15 commit 3c2d297
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/cleanmodelica.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""Deletes all temporary files created by Dymola, starting
at the current working directory and recursively searching the
subdirectories for files.
Expand Down
2 changes: 1 addition & 1 deletion bin/validateHTML.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
#####################################################################
# This script validates the html code in the info section
# of all .mo files in the current directory and in all its
Expand Down
2 changes: 1 addition & 1 deletion bin/verifyFiles.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
#####################################################################
# This script checks mo and mos files for invalid syntax.
#
Expand Down

0 comments on commit 3c2d297

Please sign in to comment.