Skip to content

Commit

Permalink
Use python3 as the interpreter instead of python (ie v2)
Browse files Browse the repository at this point in the history
This fixes lintian warning "unusual-interpreter".

Part of the Debian edition of FreeCAD since 2023.
  • Loading branch information
petterreinholdtsen committed Jul 1, 2023
1 parent 3c7e350 commit 28ad96b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Mod/AddonManager/AddonManager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

# SPDX-License-Identifier: LGPL-2.1-or-later
# ***************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Spreadsheet/importXLSX.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#***************************************************************************
#* Copyright (c) 2016 Ulrich Brammer <ulrich1a@users.sourceforge.net> *
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/TechDraw/TDTest/DLeaderRText.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# test script for TechDraw module
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/TechDraw/TDTest/DrawHatchTest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-


Expand Down
2 changes: 1 addition & 1 deletion src/Mod/TechDraw/TDTest/DrawViewDetailTest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# test script for DrawViewDetail
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/TechDraw/TDTest/DrawViewPartTest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# basic test script for TechDraw module
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/TechDraw/TDTest/TDPyTest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# basic test script for TechDraw Py functions migrated from Drawing
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Test/testmakeWireString.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# ***************************************************************************
# * Copyright (c) 2013 WandererFan <wandererfan@gmail.com> *
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Test/unittestgui.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
"""
GUI framework and application for use with Python unit testing framework.
Execute tests written using the framework provided by the 'unittest' module.
Expand Down

0 comments on commit 28ad96b

Please sign in to comment.