Skip to content

Commit b66a088

Browse files
committed
Fixed shebang to explicitly call python3 instead of python - unrolled broken changes to ControlsDesktop
1 parent 362b8c7 commit b66a088

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

samples/ControlsDesktop/controlsdemo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
#----------------------------------------------------------------------------------
33
# Name: CtrlsDemoFrm
44
# Purpose: More demonstration showing more controls, with more properties and

samples/HelloDelphiFMX.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
#----------------------------------------------------------------
33
# Name: HelloDelphiFMX.py
44
# Purpose: Simple DelphiFMX for Python demonstration with OOP

samples/HiDPI/HelloHighDpi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
#----------------------------------------------------------------
33
# Name: hello_highdpi.py
44
# Purpose: Test of High DPI Awareness
@@ -69,4 +69,4 @@ def main():
6969
Application.MainForm.Destroy()
7070

7171
if __name__ == '__main__':
72-
main()
72+
main()

samples/PasswordGenerator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
#----------------------------------------------------------------
33
# Name: PasswordGenerator.py
44
# Purpose: Password Generator built with DelphiFMX GUI Framework

samples/Simplest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
#-----------------------------------------------
33
# Name: Simplest.py
44
# Purpose: The simplest demo of Delphi FMX

samples/ToDoList.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
#----------------------------------------------------------------
33
# Name: ToDoList.py
44
# Purpose: Simple ToDo List built with Delphi FMX

0 commit comments

Comments
 (0)