Jan-23-2020, 11:47 PM
i figured it out, had to add wait...
This is the code that worked.
Thanks to everyone that took the time to help
This is the code that worked.
1 2 3 4 5 6 |
#!/usr/bin/python3 this is the 'starter.py' file import subprocess p = subprocess.Popen([ "gnome-terminal" , "--" , "/home/graham/Desktop/backupwatcher/backup-client.py" ]) p.wait() |
