Skip to content

Commit

Permalink
Merge pull request #178 from quexten/fix/os_undefined
Browse files Browse the repository at this point in the history
Fix os undefined
  • Loading branch information
quexten authored Apr 29, 2024
2 parents b112e64 + 51ed712 commit 3762702
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 3762702

Please sign in to comment.