Skip to content

Commit 93e5f7c

Browse files
changed startup script to python3
1 parent e362e90 commit 93e5f7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ def __save_and_exit(self):
746746
script = open(script_name,"w")
747747
script.write("#!/bin/sh\n")
748748
script.write("cd %s\n"% install_dir)
749-
script.write("python user_interface.py $* > %s\n"%(os.path.join(install_dir,"..","photobooth.log")))
749+
script.write("python3 user_interface.py $* > %s\n"%(os.path.join(install_dir,"..","photobooth.log")))
750750
script.close()
751751
#make the script executable
752752
import stat
@@ -1022,7 +1022,7 @@ def auth_callback(authorization_uri):
10221022
script = open(script_name,"w")
10231023
script.write("#!/bin/sh\n")
10241024
script.write("cd %s\n"% install_dir)
1025-
script.write("python user_interface.py $* > %s\n"%(os.path.join(install_dir,"..","photobooth.log")))
1025+
script.write("python3 user_interface.py $* > %s\n"%(os.path.join(install_dir,"..","photobooth.log")))
10261026
script.close()
10271027
#make the script executable
10281028
import stat

0 commit comments

Comments
 (0)