Merge pull request #178 from quexten/fix/os_undefined

Fix os undefined
This commit is contained in:
Bernd Schoolmann 2024-04-29 06:12:14 +02:00 committed by GitHub
commit 37627024de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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()