- Improve error reporting
- Added Idle border colour option
This commit is contained in:
parent
a6bd38bf8e
commit
fa5a948197
3 changed files with 39 additions and 1 deletions
|
|
@ -15,6 +15,7 @@ import os
|
|||
import time
|
||||
import sys
|
||||
import re
|
||||
import traceback
|
||||
try:
|
||||
# pylint: disable=wrong-import-position,wrong-import-order
|
||||
import dbus # nopep8
|
||||
|
|
@ -395,4 +396,5 @@ def entrypoint():
|
|||
log.warning("Sent RPC command")
|
||||
except Exception as ex:
|
||||
log.error(ex)
|
||||
log.error(traceback.format_exc())
|
||||
sys.exit(1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue