Skip to content

Commit

Permalink
Fix os undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
quexten committed Apr 29, 2024
1 parent 695ba11 commit 51ed712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/linux/flatpak/autostart.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def request_autostart():

request_autostart()

thread = Timer(10, os._exit, [0])
thread = Timer(10, sys.exit, [0])
thread.start()

loop = GLib.MainLoop()
Expand Down

0 comments on commit 51ed712

Please sign in to comment.